mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 12:23:31 +00:00
* lib/msafd/makefile (TARGET_CFLAGS): Don't define DBG. * lib/msafd/include/debug.h: Redefine ASSERT. svn path=/trunk/; revision=11013
38 lines
617 B
Makefile
38 lines
617 B
Makefile
# $Id: makefile,v 1.16 2004/09/23 20:05:32 chorns Exp $
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_TYPE = dynlink
|
|
|
|
TARGET_NAME = msafd
|
|
|
|
TARGET_BASE = $(TARGET_BASE_LIB_MSAFD)
|
|
|
|
TARGET_SDKLIBS = ntdll.a kernel32.a advapi32.a
|
|
|
|
TARGET_CFLAGS = \
|
|
-I./include \
|
|
-Wall \
|
|
-Werror \
|
|
-fno-builtin \
|
|
-DUNICODE \
|
|
-D__USE_W32API
|
|
|
|
TARGET_LFLAGS = -nostartfiles -nostdlib
|
|
|
|
MISC_OBJECTS = \
|
|
misc/dllmain.o misc/event.o misc/helpers.o \
|
|
misc/sndrcv.o misc/stubs.o
|
|
|
|
TARGET_OBJECTS = $(MISC_OBJECTS)
|
|
|
|
DEP_OBJECTS = $(TARGET_OBJECTS)
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
include $(TOOLS_PATH)/depend.mk
|
|
|
|
# EOF
|