reactos/reactos/lib/comctl32/winetests/makefile
Steven Edwards 3ed09e40d9 Should be winetests not winetest.
svn path=/trunk/; revision=13951
2005-03-12 04:11:24 +00:00

31 lines
No EOL
611 B
Makefile

# $Id: Makefile 12745 2005-01-03 02:37:10Z sedwards $
PATH_TO_TOP = ../../..
TARGET_NORC = yes
TARGET_TYPE = program
TARGET_APPTYPE = console
# require os code to explicitly request A/W version of structs/functions
TARGET_CFLAGS += -D_DISABLE_TIDENTS -D__USE_W32API -D_WIN32_IE=0x0600 \
-D_WIN32_WINNT=0x0501 -D__REACTOS__
TARGET_NAME = comctl32_test
TARGET_SDKLIBS = shlwapi.a gdi32.a comctl32.a ntdll.a wine.a
TARGET_OBJECTS = \
testlist.o \
dpa.o \
imagelist.o \
mru.o \
subclass.o \
tab.o
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk
# EOF