* webserver.c, context_loop.c, webcit.c: add commandline args for host
[citadel.git] / webcit / Makefile
index 55021beaf13448298d3bb6addcc8d3f0773425f0..b41aed353823795749f77a093a118d232a08f5ef 100644 (file)
@@ -17,8 +17,10 @@ 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 \
+       roomops.o tools.o
+       cc webcit.o auth.o tcp_sockets.o mainmenu.o serv_func.o who.o \
+       tools.o roomops.o -o webcit
 
 webcit.o: webcit.c webcit.h
        cc -c webcit.c
@@ -31,3 +33,15 @@ 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
+
+tools.o: tools.c webcit.h
+       cc -c tools.c
+
+roomops.o: roomops.c webcit.h
+       cc -c roomops.c