Patch by Jonathon Wilson:
[reactos.git] / reactos / apps / tests / txtscale / Makefile
1
2 PATH_TO_TOP = ../../..
3
4 TARGET_TYPE = program
5
6 TARGET_APPTYPE = windows
7
8 TARGET_NAME = txtscale
9
10 TARGET_NORC = yes
11
12 TARGET_CFLAGS = -fexceptions -g -O0 -DWIN32 -D_DEBUG -D_WINDOWS -D_MBCS -W -D__USE_W32API -D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501 -Wall -Werror
13
14 TARGET_CPPFLAGS = -fexceptions -g -O0 -DWIN32 -D_DEBUG -D_WINDOWS -D_MBCS -W -D__USE_W32API -D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501 -Wall -Werror
15
16 TARGET_SDKLIBS = \
17 kernel32.a \
18 user32.a \
19 gdi32.a
20
21 TARGET_GCCLIBS = comctl32
22
23 TARGET_OBJECTS = \
24 txtscale.o \
25 mk_font.o
26
27 include $(PATH_TO_TOP)/rules.mak
28
29 include $(TOOLS_PATH)/helper.mk
30
31 # overide LD_CC to use g++ for linking of the executable
32 LD_CC = $(CXX)
33
34 # EOF