]> code.citadel.org Git - citadel.git/blob - webcit/Makefile
4081a7fb5153f0523d961cb125868a01d17da0af
[citadel.git] / webcit / Makefile
1 all: webserver webcit
2
3 webserver: webserver.o context_loop.o
4         cc webserver.o context_loop.o -lpthread -o webserver
5
6 webserver.o: webserver.c webcit.h
7         cc -c webserver.c
8
9 context_loop.o: context_loop.c webcit.h
10         cc -c context_loop.c
11
12 webcit: webcit.o
13         cc webcit.o -o webcit
14
15 webcit.o: webcit.c webcit.h
16         cc -c webcit.c