Fixed assert() macro, fixed header
[reactos.git] / posix / Makefile
1 # $Id: Makefile,v 1.1 2002/04/10 21:30:20 ea Exp $
2 #
3 # ReactOS POSIX+ Personality
4 #
5 PATH_TO_TOP=../..
6
7 CFLAGS=-Iinclude
8
9 all: lib/crt0w32.o
10 make -C tools
11 make -C server
12 make -C lib/psxdll
13 make -C lib/psxx
14 make -C apps/baresh
15 make -C apps/csrterm
16
17 lib/crt0w32.o: lib/crt0w32.c
18
19 clean:
20 make -C tools clean
21 make -C server clean
22 make -C lib/psxdll clean
23 make -C lib/psxx clean
24 make -C apps/baresh clean
25 make -C apps/csrterm clean
26 - $(RM) lib/crt0w32.o
27
28 include $(PATH_TO_TOP)/rules.mak
29
30 # EOF