0bdd7bee60baa514aa273523c99b6fac2e5debee
[reactos.git] / subsys / system / regedit / makefile
1 #
2 #  ReactOS regedit
3 #
4 #  Makefile
5 #
6
7 PATH_TO_TOP = ../../..
8
9 TARGET_TYPE = program
10
11 TARGET_APPTYPE = windows
12
13 TARGET_NAME = regedit
14
15 TARGET_CFLAGS = -D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501 -D__USE_W32API 
16         
17 TARGET_GCCLIBS = msvcrt advapi32 kernel32 
18
19 TARGET_OBJECTS = \
20         about.o \
21         childwnd.o \
22         framewnd.o \
23         listview.o \
24         main.o \
25         regedit.o \
26         regproc.o \
27         treeview.o
28
29 include $(PATH_TO_TOP)/rules.mak
30
31 include $(TOOLS_PATH)/helper.mk
32
33 # EOF