Get rid of .edf files
[reactos.git] / reactos / lib / libwine / makefile
1 # $Id: makefile,v 1.3 2004/09/16 10:25:15 gvg Exp $
2
3 PATH_TO_TOP = ../..
4
5 TARGET_TYPE = library
6
7 TARGET_NAME = libwine
8
9 TARGET_CFLAGS = -D__REACTOS__
10
11 # require os code to explicitly request A/W version of structs/functions
12 TARGET_CFLAGS += -D_DISABLE_TIDENTS -Werror -Wall
13
14 TARGET_LFLAGS = -Wl,--file-alignment,0x1000 \
15 -Wl,--section-alignment,0x1000 \
16 -nostartfiles
17
18 TARGET_OBJECTS = \
19 debug.o
20
21 include $(PATH_TO_TOP)/rules.mak
22
23 include $(TOOLS_PATH)/helper.mk
24
25 # EOF