diff --git a/reactos/lib/cabinet/Makefile b/reactos/lib/cabinet/Makefile new file mode 100644 index 00000000000..a2301a1f5ae --- /dev/null +++ b/reactos/lib/cabinet/Makefile @@ -0,0 +1,9 @@ +# $Id: Makefile 7618 2004-01-14 01:47:46Z sedwards $ + +PATH_TO_TOP = ../.. + +TARGET_TYPE = winedll + +include $(PATH_TO_TOP)/rules.mak + +include $(TOOLS_PATH)/helper.mk diff --git a/reactos/lib/cabinet/Makefile.ros-template b/reactos/lib/cabinet/Makefile.ros-template new file mode 100644 index 00000000000..a17f3164a6c --- /dev/null +++ b/reactos/lib/cabinet/Makefile.ros-template @@ -0,0 +1,21 @@ +# $Id: Makefile.ros-template 11910 2004-12-03 23:37:44Z blight $ + +TARGET_NAME = cabinet + +TARGET_OBJECTS = @C_SRCS@ + +TARGET_CFLAGS = @EXTRADEFS@ -D__REACTOS__ + +TARGET_SDKLIBS = @IMPORTS@ wine.a wine_uuid.a ntdll.a + +TARGET_BASE = $(TARGET_BASE_LIB_CABINET) + +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