reactos/reactos/lib/psapi/makefile
KJK::Hyperion 1a9ed68d15 PSAPI initial commit
svn path=/trunk/; revision=3120
2002-06-18 22:16:53 +00:00

28 lines
441 B
Makefile

# $Id: makefile,v 1.2 2002/06/18 22:15:57 hyperion Exp $
PATH_TO_TOP = ../..
TARGET_TYPE = dynlink
TARGET_NAME = psapi
TARGET_SDKLIBS = ntdll.a kernel32.a
TARGET_CFLAGS = -I./include -Wall
TARGET_LFLAGS = -nostdlib
TARGET_BASE = 0x68F70000
TARGET_OBJECTS = \
misc/dllmain.o \
misc/malloc.o \
misc/stubs.o \
misc/win32.o \
enum/module.o \
enum/process.o
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk
# EOF