Added -D__USE_W32API
[reactos.git] / reactos / subsys / ntvdm / makefile
1 # $Id: makefile,v 1.4 2003/11/16 21:47:20 sedwards Exp $
2
3 PATH_TO_TOP = ../..
4
5 TARGET_TYPE = program
6
7 TARGET_APPTYPE = console
8
9 TARGET_NAME = ntvdm
10
11 TARGET_INSTALLDIR = system32
12
13 # require os code to explicitly request A/W version of structs/functions
14 TARGET_CFLAGS += -D_DISABLE_TIDENTS -Wall -Werror -D__USE_W32API
15
16 TARGET_SDKLIBS = ntdll.a kernel32.a user32.a gdi32.a advapi32.a
17
18 TARGET_OBJECTS = $(TARGET_NAME).o
19
20 include $(PATH_TO_TOP)/rules.mak
21
22 include $(TOOLS_PATH)/helper.mk
23
24 # EOF