PSX: early code for the PSXSS server program. Currently it is a W32 console application,
[reactos.git] / posix / server / Makefile
diff --git a/posix/server/Makefile b/posix/server/Makefile
new file mode 100644 (file)
index 0000000..23aa03a
--- /dev/null
@@ -0,0 +1,51 @@
+# $Id: Makefile,v 1.1 2002/04/10 21:30:21 ea Exp $
+#
+# ReactOS POSIX+ Environment Subsystem
+#
+PATH_TO_TOP=../../..
+
+TARGET_TYPE = program
+
+TARGET_PATH = misc
+
+TARGET_NAME = psxss
+
+TARGET_APPTYPE = console
+
+TARGET_SDKLIBS = ntdll.a kernel32.a
+
+TARGET_CFLAGS=-Iinclude -I../include -D__PSXSS_ON_W32__
+
+PSXSS_MISC_OBJECTS = \
+       misc/main.o \
+       misc/init.o \
+       misc/print.o
+
+PSXSS_OB_OBJECTS = \
+       ob/process.o \
+       ob/session.o \
+       ob/terminal.o
+
+PSXSS_PORT_OBJECTS = \
+       port/api.o \
+       port/sbapi.o \
+       port/session.o \
+       port/utils.o
+
+PSXSS_CALL_OBJECTS = \
+       call/null.o \
+       call/_exit.o \
+       call/stubs.o \
+       call/syscall.o
+
+TARGET_OBJECTS=\
+       $(PSXSS_MISC_OBJECTS) \
+       $(PSXSS_OB_OBJECTS) \
+       $(PSXSS_PORT_OBJECTS) \
+       $(PSXSS_CALL_OBJECTS)
+
+include $(PATH_TO_TOP)/rules.mak
+
+include $(TOOLS_PATH)/helper.mk
+
+# EOF