a1b11eb024106e9614489f9fb87e08035c3503ac
[reactos.git] / reactos / lib / msafd / makefile
1 # $Id: makefile,v 1.11 2003/09/12 17:51:47 vizzini Exp $
2
3 PATH_TO_TOP = ../..
4
5 TARGET_TYPE = dynlink
6
7 TARGET_NAME = msafd
8
9 TARGET_BASE = 0x777a0000
10
11 # require os code to explicitly request A/W version of structs/functions
12 TARGET_CFLAGS += -D_DISABLE_TIDENTS -Wall -Werror
13
14 TARGET_SDKLIBS = ntdll.a kernel32.a
15
16 TARGET_CFLAGS = \
17 -I./include \
18 -Wall \
19 -Werror \
20 -fno-builtin \
21 -DUNICODE \
22 -DDBG
23
24 TARGET_LFLAGS = -nostartfiles -nostdlib
25
26 MISC_OBJECTS = \
27 misc/dllmain.o misc/event.o misc/helpers.o \
28 misc/sndrcv.o misc/stubs.o
29
30 TARGET_OBJECTS = $(MISC_OBJECTS)
31
32 DEP_OBJECTS = $(TARGET_OBJECTS)
33
34 include $(PATH_TO_TOP)/rules.mak
35
36 include $(TOOLS_PATH)/helper.mk
37
38 include $(TOOLS_PATH)/depend.mk
39
40 # EOF