migrate substitution keywords to SVN
[reactos.git] / reactos / lib / psapi / makefile
1 # $Id$
2
3 PATH_TO_TOP = ../..
4
5 TARGET_TYPE = dynlink
6
7 TARGET_NAME = psapi
8
9 TARGET_SDKLIBS = epsapi.a ntdll.a kernel32.a
10
11 TARGET_CFLAGS = -I./include -Wall -Werror
12
13 # require os code to explicitly request A/W version of structs/functions
14 TARGET_CFLAGS += -D_DISABLE_TIDENTS
15
16 TARGET_LFLAGS = -nostartfiles -nostdlib
17
18 TARGET_BASE = $(TARGET_BASE_LIB_PSAPI)
19
20 TARGET_PCH = precomp.h
21
22 TARGET_OBJECTS = \
23 misc/dllmain.o \
24 misc/malloc.o \
25 misc/stubs.o \
26 misc/win32.o
27
28 DEP_OBJECTS = $(TARGET_OBJECTS)
29
30 include $(PATH_TO_TOP)/rules.mak
31
32 include $(TOOLS_PATH)/helper.mk
33
34 include $(TOOLS_PATH)/depend.mk
35
36 # EOF