scroll mode for very long start menus
[reactos.git] / reactos / apps / tests / kernel32 / Makefile
1 # $Id: Makefile,v 1.2 2004/05/04 17:25:18 navaraf Exp $
2
3 PATH_TO_TOP = ../../..
4
5 TARGET_NORC = yes
6
7 TARGET_TYPE = program
8
9 TARGET_APPTYPE = console
10
11 # require os code to explicitly request A/W version of structs/functions
12 TARGET_CFLAGS += -D_DISABLE_TIDENTS -D__USE_W32API -DWINVER=0x0500
13
14 TARGET_NAME = kernel32_test
15
16 TARGET_SDKLIBS = kernel32.a
17
18 TARGET_OBJECTS = \
19 testlist.o \
20 atom.o \
21 change.o \
22 codepage.o \
23 comm.o \
24 console.o \
25 directory.o \
26 drive.o \
27 environ.o \
28 file.o \
29 format_msg.o \
30 heap.o \
31 locale.o \
32 mailslot.o \
33 path.o \
34 pipe.o \
35 process.o \
36 profile.o \
37 thread.o \
38 virtual.o
39
40 #FIXME alloc.o \
41
42 include $(PATH_TO_TOP)/rules.mak
43
44 include $(TOOLS_PATH)/helper.mk
45
46 # EOF