This commit was manufactured by cvs2svn to create branch 'captive'.
[reactos.git] / apps / tests / primitives / Makefile
1 #
2 #  ReactOS explorer
3 #
4 #  Makefile
5 #
6
7 PATH_TO_TOP = ../../..
8
9 TARGET_TYPE = program
10
11 TARGET_APPTYPE = windows
12
13 TARGET_NAME = primitives
14
15 TARGET_NORC = yes
16
17 TARGET_CFLAGS = -fexceptions -g -O0 -DWIN32 -D_DEBUG -D_WINDOWS -D_MBCS -W -D__USE_W32API
18         
19 TARGET_CPPFLAGS = -fexceptions -g -O0 -DWIN32 -D_DEBUG -D_WINDOWS -D_MBCS -W -D__USE_W32API
20
21 TARGET_SDKLIBS = \
22         kernel32.a \
23         user32.a \
24         gdi32.a
25
26 TARGET_OBJECTS = \
27         primitives.o \
28         mk_font.o
29
30 include $(PATH_TO_TOP)/rules.mak
31
32 include $(TOOLS_PATH)/helper.mk
33
34 # overide LD_CC to use g++ for linking of the executable
35 LD_CC = $(CXX)
36
37 # EOF