mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +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
23 lines
385 B
Makefile
23 lines
385 B
Makefile
# $Id: makefile
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_TYPE = dynlink
|
|
|
|
TARGET_NAME = snmpapi
|
|
|
|
TARGET_BASE = 0x777c0000
|
|
|
|
TARGET_CFLAGS = -DUNICODE
|
|
|
|
# require os code to explicitly request A/W version of structs/functions
|
|
TARGET_CFLAGS += -D_DISABLE_TIDENTS
|
|
|
|
TARGET_SDKLIBS = ntdll.a kernel32.a
|
|
|
|
TARGET_OBJECTS = $(TARGET_NAME).o
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|