c96c5f7a94aa4ca21ed2e218a02634af0bc52673
[reactos.git] / 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 = 0x68F70000
19
20 TARGET_OBJECTS = \
21         misc/dllmain.o \
22         misc/malloc.o \
23         misc/stubs.o \
24         misc/win32.o
25         
26 DEP_OBJECTS = $(TARGET_OBJECTS)
27
28 include $(PATH_TO_TOP)/rules.mak
29
30 include $(TOOLS_PATH)/helper.mk
31
32 include $(TOOLS_PATH)/depend.mk
33
34 # EOF