3 all: boot_subset testServer listServer
5 boot_subset: boot_subset.o
6 cc -o boot_subset boot_subset.o
8 testServer: testServer.o bootstrapUser.o
9 cc -o testServer testServer.o bootstrapUser.o
11 listServer: listServer.o bootstrapUser.o
12 cc -o listServer listServer.o bootstrapUser.o
15 bootstrapUser.o: ../bootstrapUser.c
16 cc -c -g ../bootstrapUser.c
19 rm -f *.o testServer listServer