mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 12:23:30 +00:00
* enabled _DISABLE_TIDENTS for most ReactOS OS components. * fixed all errors that resulted from this change * a few small bugfixes along the way svn path=/trunk/; revision=5449
34 lines
555 B
Makefile
34 lines
555 B
Makefile
# $Id: makefile
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_TYPE = dynlink
|
|
|
|
TARGET_NAME = ws2help
|
|
|
|
TARGET_BASE = 0x777c0000
|
|
|
|
TARGET_CFLAGS = \
|
|
-I./include \
|
|
-Wall \
|
|
-Werror \
|
|
-fno-builtin \
|
|
-DUNICODE
|
|
|
|
# require os code to explicitly request A/W version of structs/functions
|
|
TARGET_CFLAGS += -D_DISABLE_TIDENTS
|
|
|
|
TARGET_LFLAGS = -nostartfiles -nostdlib
|
|
|
|
TARGET_SDKLIBS = ntdll.a kernel32.a ws2_32.a
|
|
|
|
TARGET_OBJECTS = $(TARGET_NAME).o
|
|
|
|
DEP_OBJECTS = $(TARGET_OBJECTS)
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
include $(TOOLS_PATH)/depend.mk
|