mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
6eab84796a
I renamed the terminal emulator CSRTERM: now it is named POSIXW32, because it is a a door to reach the POSIX+ subsystem FROM the Win32 subsystem. svn path=/trunk/; revision=3026
30 lines
508 B
Makefile
30 lines
508 B
Makefile
# $Id: Makefile,v 1.2 2002/06/08 16:28:02 ea Exp $
|
|
#
|
|
# ReactOS POSIX+ Personality
|
|
#
|
|
PATH_TO_TOP=../reactos
|
|
|
|
CFLAGS=-Iinclude
|
|
|
|
all: lib/crt0w32.o
|
|
make -C tools
|
|
make -C server
|
|
make -C lib/psxdll
|
|
make -C lib/psxx
|
|
make -C apps/baresh
|
|
make -C apps/posixw32
|
|
|
|
lib/crt0w32.o: lib/crt0w32.c
|
|
|
|
clean:
|
|
make -C tools clean
|
|
make -C server clean
|
|
make -C lib/psxdll clean
|
|
make -C lib/psxx clean
|
|
make -C apps/baresh clean
|
|
make -C apps/csrterm clean
|
|
- $(RM) lib/crt0w32.o
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
# EOF
|