5716c75e5631ccd5269657ac8d7b73355acfbee4
[reactos.git] / apps / tests / stretchblt / makefile
1
2 PATH_TO_TOP = ../../..
3
4 TARGET_TYPE = program
5
6 TARGET_APPTYPE = windows
7
8 TARGET_NAME = stretchblt
9
10 TARGET_NORC = yes
11
12 TARGET_CFLAGS = -fexceptions -g -O0 -DWIN32 -D_DEBUG -D_WINDOWS -D_MBCS -W -D__USE_W32API
13         
14 TARGET_CPPFLAGS = -fexceptions -g -O0 -DWIN32 -D_DEBUG -D_WINDOWS -D_MBCS -W -D__USE_W32API
15
16 TARGET_SDKLIBS = \
17         kernel32.a \
18         user32.a \
19         gdi32.a
20
21 TARGET_OBJECTS = \
22 stretchblt.o
23
24 include $(PATH_TO_TOP)/rules.mak
25
26 include $(TOOLS_PATH)/helper.mk
27
28 # overide LD_CC to use g++ for linking of the executable
29 LD_CC = $(CXX)
30
31 # EOF