7bae56f7cc31abe343abdfaa04d165bd9e8863f8
[reactos.git] / reactos / lib / psapi / makefile
1 # $Id: makefile,v 1.8 2003/08/07 04:03:23 royce Exp $
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
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