b4cadbd3516891631a523251ef68a937f112eb27
[reactos.git] / rosapps / tests / txtscale / Makefile
1
2 PATH_TO_TOP = ../../../reactos
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 comctl32.a
21
22 TARGET_OBJECTS = \
23 txtscale.o \
24 mk_font.o
25
26 include $(PATH_TO_TOP)/rules.mak
27
28 include $(TOOLS_PATH)/helper.mk
29
30 # overide LD_CC to use g++ for linking of the executable
31 LD_CC = $(CXX)
32
33 # EOF