Updated with progress. Still far to go....
[reactos.git] / rosapps / regedit / Makefile
1 #
2 # ReactOS regedit
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 = regedit
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 listview.o \
35 treeview.o \
36 main.o
37
38 LIBS = -lgdi32 -luser32 -lkernel32 -lcomctl32
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
54
55 framewnd.o: framewnd.c framewnd.h listview.h treeview.h main.h
56
57 listview.o: listview.c listview.h main.h
58
59 treeview.o: treeview.c treeview.h main.h
60
61 debug.o: debug.c debug.h main.h
62
63
64 clean:
65 - $(RM) $(OBJS)
66 - $(RM) $(TARGET).exe
67 - $(RM) $(TARGET).sym
68 - $(RM) $(TARGET).coff
69
70 include $(PATH_TO_TOP)/rules.mak