Merge 15268:15329 from trunk
[reactos.git] / rosapps / templates / mdi / makefile
1 #
2 # ReactOS winfile
3 #
4 # Makefile
5 #
6 # Copyright (C) 2002 Robert Dickenson <robd@reactos.org>
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #
22
23 PATH_TO_TOP = ../..
24
25 TARGET = mdi
26
27 BASE_CFLAGS = -DGCC -D_WIN32_IE=0x0400
28
29 RCFLAGS = -DGCC -D_WIN32_IE=0x0400
30
31
32 OBJS = about.o \
33 framewnd.o \
34 childwnd.o \
35 main.o
36
37 #LIBS = -lgdi32 -luser32 -lkernel32 -lcomctl32
38 LIBS = -lgdi32 -luser32 -lkernel32 -l../../lib/ros2win/ros2win
39
40 all: $(TARGET).exe
41
42 $(TARGET).res: $(TARGET).rc
43
44 $(TARGET).exe: $(OBJS) $(TARGET).coff
45 $(CC) -Wl,--subsystem,windows -o $(TARGET).exe $(OBJS) $(TARGET).coff $(LIBS)
46 $(NM) --numeric-sort $(TARGET).exe > $(TARGET).sym
47
48
49 main.h: resource.h
50
51 about.o: about.c about.h main.h
52
53 main.o: main.c main.h framewnd.h childwnd.h
54
55 framewnd.o: framewnd.c framewnd.h main.h
56
57 childwnd.o: childwnd.c childwnd.h main.h
58
59
60
61 clean:
62 - $(RM) $(OBJS)
63 - $(RM) $(TARGET).exe
64 - $(RM) $(TARGET).sym
65 - $(RM) $(TARGET).coff
66
67 include $(PATH_TO_TOP)/rules.mak