Created new application - regedit.
[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 debug.o \
34 regtree.o \
35 reglist.o \
36 $(TARGET).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 about.o: about.cpp about.h resource.h
50
51 affinity.o: affinity.cpp affinity.h
52
53 applicationpage.o: applicationpage.cpp applicationpage.h processpage.h $(TARGET).h resource.h
54
55 column.o: column.cpp column.h resource.h
56
57 debug.o: debug.cpp debug.h
58
59 endproc.o: endproc.cpp endproc.h
60
61 font.o: font.cpp font.h
62
63 graph.o: graph.cpp graph.h resource.h
64
65 graphctrl.o: graphctrl.cpp graphctrl.h resource.h
66
67 optnmenu.o: optnmenu.cpp optnmenu.h resource.h
68
69 perfdata.o: perfdata.cpp perfdata.h
70
71 performancepage.o: performancepage.cpp performancepage.h perfdata.h graphctrl.h graph.h $(TARGET).h resource.h
72
73 priority.o: priority.cpp priority.h
74
75 processpage.o: processpage.cpp processpage.h perfdata.h column.h proclist.h $(TARGET).h resource.h
76
77 proclist.o: proclist.cpp proclist.h
78
79 run.o: run.cpp run.h
80
81 trayicon.o: trayicon.cpp trayicon.h resource.h
82
83 $(TARGET).o: $(TARGET).cpp $(TARGET).h resource.h
84
85 clean:
86 - $(RM) $(OBJS)
87 - $(RM) $(TARGET).exe
88 - $(RM) $(TARGET).sym
89 - $(RM) $(TARGET).coff
90
91 include ../rules.mak