Committing latest progress, still much TODO:
[reactos.git] / rosapps / winfile / 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 = winfile
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 debug.o \
36 draw.o \
37 entries.o \
38 run.o \
39 settings.o \
40 splitpath.o \
41 sort.o \
42 utils.o \
43 treeview.o \
44 listview.o \
45 trace.o \
46 main.o
47
48 LIBS = -lgdi32 -luser32 -lkernel32 -lcomctl32
49
50 all: $(TARGET).exe
51
52 $(TARGET).res: $(TARGET).rc
53
54 $(TARGET).exe: $(OBJS) $(TARGET).coff
55 $(CC) -Wl,--subsystem,windows -o $(TARGET).exe $(OBJS) $(TARGET).coff $(LIBS)
56 $(NM) --numeric-sort $(TARGET).exe > $(TARGET).sym
57
58
59 about.o: about.c about.h resource.h
60
61 main.o: main.c main.h childwnd.h framewnd.h resource.h
62
63 childwnd.o: childwnd.c childwnd.h resource.h
64
65 framewnd.o: framewnd.c framewnd.h resource.h
66
67 debug.o: debug.c debug.h
68
69 font.o: font.c font.h
70
71 run.o: run.c run.h
72
73 setttings.o: setttings.c setttings.h resource.h
74
75 $(TARGET).o: $(TARGET).c $(TARGET).h resource.h
76
77
78 clean:
79 - $(RM) $(OBJS)
80 - $(RM) $(TARGET).exe
81 - $(RM) $(TARGET).sym
82 - $(RM) $(TARGET).coff
83
84 include $(PATH_TO_TOP)/rules.mak