update for HEAD-2003091401
[reactos.git] / subsys / system / explorer / winefile / makefile
1 #
2 #  ReactOS winfile explorer
3 #
4 #  Makefile
5 #
6
7 PATH_TO_TOP = ../../../..
8
9 TARGET_TYPE = program
10
11 TARGET_APPTYPE = windows
12
13 TARGET_NAME = explorer
14
15 TARGET_CFLAGS = -fexceptions -O2 -DNDEBUG -DWIN32 -D_ROS_ -W -D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501
16
17 TARGET_RCFLAGS = -DNDEBUG -DWIN32 -D_ROS_ -D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501
18
19 ifdef UNICODE
20 TARGET_CFLAGS += -DUNICODE
21 TARGET_CPPFLAGS += -DUNICODE
22 MK_DEFENTRY := _wWinMain@16
23 endif
24
25 VPATH += ../utility
26 VPATH += ../shell
27 VPATH += plugins
28
29 WINE_MODE = yes
30
31 WINE_RC = $(TARGET_NAME)
32
33 WINE_INCLUDE = ./
34
35 TARGET_GCCLIBS = comctl32 ole32 uuid
36
37 TARGET_SDKLIBS = \
38         kernel32.a \
39         user32.a \
40         gdi32.a \
41         advapi32.a \
42         version.a
43
44 TARGET_OBJECTS = \
45         desktop.o \
46         ex_bar.o \
47         ex_clock.o \
48         ex_menu.o \
49         ex_shutdwn.o \
50         license.o \
51         startup.o \
52         winefile.o
53
54 include $(PATH_TO_TOP)/rules.mak
55
56 include $(TOOLS_PATH)/helper.mk
57
58 # EOF