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