mirror of
https://github.com/reactos/reactos.git
synced 2026-09-13 21:29:18 +08:00
26 lines
381 B
Makefile
26 lines
381 B
Makefile
# $Id$
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_DEFONLY = yes
|
|
|
|
TARGET_TYPE = library
|
|
|
|
TARGET_NAME = dxguid
|
|
|
|
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 = \
|
|
dxguid-mingw.o
|
|
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
# EOF
|