mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 19:26:05 +00:00
26 lines
427 B
Makefile
26 lines
427 B
Makefile
# $Id$
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_TYPE = library
|
|
|
|
TARGET_NAME = wine
|
|
|
|
TARGET_CFLAGS = -D__REACTOS__
|
|
|
|
# require os code to explicitly request A/W version of structs/functions
|
|
TARGET_CFLAGS += -D_DISABLE_TIDENTS -Werror -Wall
|
|
|
|
TARGET_LFLAGS = -Wl,--file-alignment,0x1000 \
|
|
-Wl,--section-alignment,0x1000 \
|
|
-nostartfiles
|
|
|
|
TARGET_OBJECTS = \
|
|
debug.o
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
# EOF
|