* added _DISABLE_TIDENTS macro to disable any ANSI/UNICODE ambiguous elements from...
[reactos.git] / reactos / lib / version / makefile
1 # $Id: makefile,v 1.12 2003/08/07 04:03:24 royce Exp $
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
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