Generate proxy makefiles in output tree.
[reactos.git] / reactos / lib / gdiplus / tests / Makefile
1 PATH_TO_TOP = ../../..
2
3 TARGET_TYPE = test
4
5 TARGET_NAME = regtests
6
7 TARGET_LIBPATH = .
8
9 TARGET_CFLAGS = \
10 -I../include \
11 -DUNICODE \
12 -Wall \
13 -Werror \
14 -fno-builtin \
15 -D__USE_W32API \
16 -DWINVER=0x0600 \
17 -D_WIN32_WINNT=0x0501 \
18 -I$(REGTESTS_PATH_INC)
19
20 TARGET_LIBS = ../gdiplus.a
21
22 -include Makefile.tests
23
24 TARGET_OBJECTS = \
25 setup.o \
26 $(addprefix tests/, $(TESTS))
27
28 include $(PATH_TO_TOP)/rules.mak
29
30 include $(TOOLS_PATH)/helper.mk