Wrong port: CSRTERM.EXE will connect to \POSIX+\SessionPort not to
[reactos.git] / posix / apps / baresh / Makefile
index 7d811ae..92b9208 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.1 2002/01/20 21:22:29 ea Exp $
+# $Id: Makefile,v 1.2 2002/04/07 13:53:51 ea Exp $
 #
 # Tu run it in Win32 console mode, undefine __SUBSYSTEM_WINDOWS__
 # and pass "console" in the ld's --subsystem option.
@@ -12,11 +12,11 @@ TARGET_NAME=sh
 
 CFLAGS=-D__SUBSYSTEM_WINDOWS__
 
-OBJECTS=$(TARGET_NAME).o
+OBJECTS=$(TARGET_NAME).o $(TARGET_NAME).coff
 
 LIBRARIES=\
        $(PATH_TO_PSX_TOP)/lib/crt0w32.o \
-       $(PATH_TO_PSX_TOP)/lib/psxdll/psxdll.a
+       $(PATH_TO_TOP)/dk/psx/lib/psxdll.a
 
 $(TARGET_NAME): $(OBJECTS) $(LIBRARIES)
        $(CC) \
@@ -28,6 +28,13 @@ $(TARGET_NAME): $(OBJECTS) $(LIBRARIES)
                -nostartfiles \
                -nostdlib
 
+$(TARGET_NAME).coff: $(TARGET_NAME).rc
+       $(RC) \
+               --include-dir $(PATH_TO_TOP)/include \
+               --output-format coff \
+               $< $@ 
+               
+
 include $(PATH_TO_TOP)/rules.mak
 
 # EOF