mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:12:57 +00:00
PSX: minor changes to the 'posix' module for enabling full compilation.
Q: should the dk for a subsystem be contained in that subsystem's tree? svn path=/trunk/; revision=3595
This commit is contained in:
parent
1e847489e4
commit
ef773a3f6b
3 changed files with 23 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
# $Id: Makefile,v 1.3 2002/08/23 12:40:56 ea Exp $
|
# $Id: Makefile,v 1.4 2002/10/01 20:21:44 ea Exp $
|
||||||
#
|
#
|
||||||
# ReactOS POSIX+ Personality
|
# ReactOS POSIX+ Personality
|
||||||
#
|
#
|
||||||
|
@ -8,6 +8,7 @@ CFLAGS=-Iinclude
|
||||||
|
|
||||||
all: lib/crt0w32.o
|
all: lib/crt0w32.o
|
||||||
make -C tools
|
make -C tools
|
||||||
|
make -C lib
|
||||||
make -C server
|
make -C server
|
||||||
make -C lib/psxdll
|
make -C lib/psxdll
|
||||||
make -C lib/psxx
|
make -C lib/psxx
|
||||||
|
@ -17,6 +18,7 @@ all: lib/crt0w32.o
|
||||||
lib/crt0w32.o: lib/crt0w32.c
|
lib/crt0w32.o: lib/crt0w32.c
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
make -C lib clean
|
||||||
make -C tools clean
|
make -C tools clean
|
||||||
make -C server clean
|
make -C server clean
|
||||||
make -C lib/psxdll clean
|
make -C lib/psxdll clean
|
||||||
|
@ -25,6 +27,7 @@ clean:
|
||||||
make -C apps/posixw32 clean
|
make -C apps/posixw32 clean
|
||||||
- $(RM) lib/crt0w32.o
|
- $(RM) lib/crt0w32.o
|
||||||
|
|
||||||
|
|
||||||
include $(PATH_TO_TOP)/rules.mak
|
include $(PATH_TO_TOP)/rules.mak
|
||||||
|
|
||||||
# EOF
|
# EOF
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: Makefile,v 1.4 2002/08/23 12:40:56 ea Exp $
|
# $Id: Makefile,v 1.5 2002/10/01 20:21:45 ea Exp $
|
||||||
#
|
#
|
||||||
# Tu run it in Win32 console mode, undefine __SUBSYSTEM_WINDOWS__
|
# Tu run it in Win32 console mode, undefine __SUBSYSTEM_WINDOWS__
|
||||||
# and pass "console" in the ld's --subsystem option.
|
# and pass "console" in the ld's --subsystem option.
|
||||||
|
@ -16,7 +16,7 @@ OBJECTS=$(TARGET_NAME).o $(TARGET_NAME).coff
|
||||||
|
|
||||||
LIBRARIES=\
|
LIBRARIES=\
|
||||||
$(PATH_TO_PSX_TOP)/lib/crt0w32.o \
|
$(PATH_TO_PSX_TOP)/lib/crt0w32.o \
|
||||||
$(PATH_TO_TOP)/dk/psx/lib/psxdll.a
|
$(PATH_TO_PSX_TOP)/lib/psxdll/psxdll.a
|
||||||
|
|
||||||
$(TARGET_NAME): $(OBJECTS) $(LIBRARIES)
|
$(TARGET_NAME): $(OBJECTS) $(LIBRARIES)
|
||||||
$(CC) \
|
$(CC) \
|
||||||
|
|
17
posix/lib/Makefile
Normal file
17
posix/lib/Makefile
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# $Id: Makefile,v 1.1 2002/10/01 20:21:45 ea Exp $
|
||||||
|
# posix/lib/Makefile
|
||||||
|
#
|
||||||
|
PATH_TO_TOP=../../reactos
|
||||||
|
|
||||||
|
PATH_TO_PSX_TOP = ../..
|
||||||
|
|
||||||
|
all:
|
||||||
|
make -C psxdll psxdll.a
|
||||||
|
make -C psxx psxx.a
|
||||||
|
|
||||||
|
clean:
|
||||||
|
- $(RM) *.a
|
||||||
|
|
||||||
|
include $(PATH_TO_TOP)/rules.mak
|
||||||
|
|
||||||
|
# EOF
|
Loading…
Add table
Add a link
Reference in a new issue