mirror of
https://github.com/reactos/reactos.git
synced 2025-06-12 08:18:31 +00:00
28 lines
441 B
Makefile
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
|