]>
Commit | Line | Data |
---|---|---|
1815bff5 A |
1 | CFLAGS = -g -I.. |
2 | ||
3 | all: boot_subset testServer listServer | |
4 | ||
5 | boot_subset: boot_subset.o | |
6 | cc -o boot_subset boot_subset.o | |
7 | ||
8 | testServer: testServer.o bootstrapUser.o | |
9 | cc -o testServer testServer.o bootstrapUser.o | |
10 | ||
11 | listServer: listServer.o bootstrapUser.o | |
12 | cc -o listServer listServer.o bootstrapUser.o | |
13 | ||
14 | ||
15 | bootstrapUser.o: ../bootstrapUser.c | |
16 | cc -c -g ../bootstrapUser.c | |
17 | ||
18 | clean: | |
19 | rm -f *.o testServer listServer |