Added combobox to drivebar, yet to get working. Whole application needs alot of cleanup.
[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 = -D_WIN32_IE=0x0400
28
29 RCFLAGS = -D_WIN32_IE=0x0400
30
31 OBJS = about.o \
32 childwnd.o \
33 debug.o \
34 dialogs.o \
35 drivebar.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 main.h: resource.h makefile
64
65 about.o: about.c about.h main.h
66
67 main.o: main.c main.h childwnd.h framewnd.h main.h
68
69 childwnd.o: childwnd.c childwnd.h main.h
70
71 framewnd.o: framewnd.c framewnd.h main.h
72
73 debug.o: debug.c debug.h main.h
74
75 font.o: font.c font.h main.h
76
77 run.o: run.c run.h main.h
78
79 setttings.o: setttings.c setttings.h main.h
80
81 $(TARGET).o: $(TARGET).c $(TARGET).h main.h makefile
82
83
84 clean:
85 - $(RM) $(OBJS)
86 - $(RM) $(TARGET).exe
87 - $(RM) $(TARGET).sym
88 - $(RM) $(TARGET).coff
89
90 include $(PATH_TO_TOP)/rules.mak