mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 04:13:33 +00:00
37 lines
651 B
Makefile
37 lines
651 B
Makefile
# $Id: makefile,v 1.14 2004/11/08 00:34:45 weiden Exp $
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_TYPE = dynlink
|
|
|
|
TARGET_NAME = psapi
|
|
|
|
TARGET_SDKLIBS = epsapi.a ntdll.a kernel32.a
|
|
|
|
TARGET_CFLAGS = -I./include -Wall -Werror
|
|
|
|
# require os code to explicitly request A/W version of structs/functions
|
|
TARGET_CFLAGS += -D_DISABLE_TIDENTS
|
|
|
|
TARGET_LFLAGS = -nostartfiles -nostdlib
|
|
|
|
TARGET_BASE = $(TARGET_BASE_LIB_PSAPI)
|
|
|
|
TARGET_PCH = precomp.h
|
|
|
|
TARGET_OBJECTS = \
|
|
misc/dllmain.o \
|
|
misc/malloc.o \
|
|
misc/stubs.o \
|
|
misc/win32.o
|
|
|
|
DEP_OBJECTS = $(TARGET_OBJECTS)
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
include $(TOOLS_PATH)/depend.mk
|
|
|
|
# EOF
|