update for HEAD-2003091401
[reactos.git] / lib / syssetup / Makefile
diff --git a/lib/syssetup/Makefile b/lib/syssetup/Makefile
new file mode 100644 (file)
index 0000000..df35842
--- /dev/null
@@ -0,0 +1,26 @@
+# $Id$
+
+PATH_TO_TOP = ../..
+
+TARGET_TYPE = dynlink
+
+TARGET_NAME = syssetup
+
+TARGET_BASE = 0x74A30000
+
+TARGET_SDKLIBS = ntdll.a kernel32.a
+
+TARGET_CFLAGS = -Wall -Werror -fno-builtin
+
+# require os code to explicitly request A/W version of structs/functions
+TARGET_CFLAGS += -D_DISABLE_TIDENTS
+TARGET_LFLAGS = -nostartfiles -nostdlib
+
+TARGET_OBJECTS = dllmain.o install.o logfile.o
+
+
+include $(PATH_TO_TOP)/rules.mak
+include $(TOOLS_PATH)/helper.mk
+
+# EOF