mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
26 lines
379 B
Makefile
26 lines
379 B
Makefile
# $Id$
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_DEFONLY = yes
|
|
|
|
TARGET_TYPE = library
|
|
|
|
TARGET_NAME = strmiids
|
|
|
|
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
|
|
|
|
TARGET_OBJECTS = \
|
|
strmiids.o
|
|
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
# EOF
|