Files
reactos/reactos/lib/samlib/makefile
T
2004-05-29 21:24:48 +00:00

26 lines
515 B
Makefile

# $Id: makefile,v 1.3 2004/05/29 21:24:46 hbirr Exp $
PATH_TO_TOP = ../..
TARGET_TYPE = dynlink
TARGET_NAME = samlib
TARGET_BASE = $(TARGET_BASE_LIB_SAMLIB)
TARGET_SDKLIBS = ntdll.a kernel32.a advapi32.a
TARGET_CFLAGS = -Wall -Werror -fno-builtin
# require os code to explicitly request A/W version of structs/functions
TARGET_CFLAGS += -D_DISABLE_TIDENTS
TARGET_LFLAGS = -nostartfiles -nostdlib
TARGET_OBJECTS = dllmain.o samlib.o
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk
# EOF