mirror of
https://github.com/reactos/reactos.git
synced 2026-05-24 08:11:38 +08:00
26 lines
468 B
Makefile
26 lines
468 B
Makefile
# $Id$
|
|
|
|
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
|