From e22aec2f4a454eba980049481e46ccf7be8c993c Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Tue, 25 Jan 2005 23:50:22 +0000 Subject: [PATCH] Forgot to add Makefiles svn path=/trunk/; revision=13299 --- reactos/lib/setupapi/Makefile.ros-template | 21 +++++++++++++++++++++ reactos/lib/setupapi/makefile | 9 +++++++++ 2 files changed, 30 insertions(+) create mode 100644 reactos/lib/setupapi/Makefile.ros-template create mode 100644 reactos/lib/setupapi/makefile diff --git a/reactos/lib/setupapi/Makefile.ros-template b/reactos/lib/setupapi/Makefile.ros-template new file mode 100644 index 00000000000..47cbad73413 --- /dev/null +++ b/reactos/lib/setupapi/Makefile.ros-template @@ -0,0 +1,21 @@ +# $Id: Makefile.ros-template 12852 2005-01-06 13:58:04Z mf $ + +TARGET_NAME = setupapi + +TARGET_OBJECTS = @C_SRCS@ + +TARGET_CFLAGS = @EXTRADEFS@ -D__REACTOS__ -D__WINESRC__ + +TARGET_SDKLIBS = @IMPORTS@ wine.a ntdll.a wine_unicode.a + +TARGET_BASE = $(TARGET_BASE_LIB_SETUPAPI) + +TARGET_RC_SRCS = @RC_SRCS@ +TARGET_RC_BINSRC = @RC_BINSRC@ +TARGET_RC_BINARIES = @RC_BINARIES@ + +default: all + +DEP_OBJECTS = $(TARGET_OBJECTS) + +include $(TOOLS_PATH)/depend.mk diff --git a/reactos/lib/setupapi/makefile b/reactos/lib/setupapi/makefile new file mode 100644 index 00000000000..9ba45e739ba --- /dev/null +++ b/reactos/lib/setupapi/makefile @@ -0,0 +1,9 @@ +# $Id: makefile 12852 2005-01-06 13:58:04Z mf $ + +PATH_TO_TOP = ../.. + +TARGET_TYPE = winedll + +include $(PATH_TO_TOP)/rules.mak + +include $(TOOLS_PATH)/helper.mk