]> code.citadel.org Git - citadel.git/blobdiff - webcit/Makefile
started to add wholist
[citadel.git] / webcit / Makefile
index 55021beaf13448298d3bb6addcc8d3f0773425f0..006292654397a8b98f4f2daac933ecb2936ae33c 100644 (file)
@@ -17,8 +17,8 @@ context_loop.o: context_loop.c webcit.h
 
 
 
-webcit: webcit.o auth.o tcp_sockets.o mainmenu.o
-       cc webcit.o auth.o tcp_sockets.o mainmenu.o -o webcit
+webcit: webcit.o auth.o tcp_sockets.o mainmenu.o serv_func.o who.o
+       cc webcit.o auth.o tcp_sockets.o mainmenu.o serv_func.o who.o -o webcit
 
 webcit.o: webcit.c webcit.h
        cc -c webcit.c
@@ -31,3 +31,9 @@ tcp_sockets.o: tcp_sockets.c webcit.h
 
 mainmenu.o: mainmenu.c webcit.h
        cc -c mainmenu.c
+
+serv_func.o: serv_func.c webcit.h
+       cc -c serv_func.c
+
+who.o: who.c webcit.h
+       cc -c who.c