]> git.saurik.com Git - apple/system_cmds.git/blame - mach_init.tproj/testServer/Makefile
system_cmds-196.tar.gz
[apple/system_cmds.git] / mach_init.tproj / testServer / Makefile
CommitLineData
1815bff5
A
1CFLAGS = -g -I..
2
3all: boot_subset testServer listServer
4
5boot_subset: boot_subset.o
6 cc -o boot_subset boot_subset.o
7
8testServer: testServer.o bootstrapUser.o
9 cc -o testServer testServer.o bootstrapUser.o
10
11listServer: listServer.o bootstrapUser.o
12 cc -o listServer listServer.o bootstrapUser.o
13
14
15bootstrapUser.o: ../bootstrapUser.c
16 cc -c -g ../bootstrapUser.c
17
18clean:
19 rm -f *.o testServer listServer