Created new subtree for groups of related test programs.
[reactos.git] / posix / Makefile
1 # $Id: Makefile,v 1.6 2002/10/29 04:44:58 rex Exp $
2 #
3 # ReactOS POSIX+ Personality
4 #
5 PATH_TO_TOP=../reactos
6
7 CFLAGS=-Iinclude
8
9 all: lib/crt0w32.o
10 make -C tools
11 make -C lib
12 make -C server
13 make -C lib/psxdll
14 make -C lib/psxx
15 make -C apps/baresh
16 make -C apps/posixw32
17
18 lib/crt0w32.o: lib/crt0w32.c
19
20 clean:
21 make -C lib clean
22 make -C tools clean
23 make -C server clean
24 make -C lib/psxdll clean
25 make -C lib/psxx clean
26 make -C apps/baresh clean
27 make -C apps/posixw32 clean
28 - $(RM) lib/crt0w32.o
29
30
31 include $(PATH_TO_TOP)/rules.mak
32
33 # EOF