update for HEAD-2003091401
[reactos.git] / lib / version / makefile
1 # $Id$
2
3 PATH_TO_TOP = ../..
4
5 TARGET_TYPE = dynlink
6
7 TARGET_NAME = version
8
9 TARGET_BASE = 0x77a90000
10
11 TARGET_CFLAGS = -fno-builtin -Werror -Wall
12
13 # require os code to explicitly request A/W version of structs/functions
14 TARGET_CFLAGS += -D_DISABLE_TIDENTS
15
16 TARGET_LFLAGS = -nostdlib -nostartfiles
17
18 TARGET_SDKLIBS = kernel32.a ntdll.a
19
20 TARGET_OBJECTS =  misc/libmain.o misc/stubs.o
21
22 TARGET_CLEAN = misc/*.o
23
24 include $(PATH_TO_TOP)/rules.mak
25
26 include $(TOOLS_PATH)/helper.mk
27
28 # EOF