]> code.citadel.org Git - citadel.git/blobdiff - webcit/Makefile.in
* wildmat.c, braindamage.c: added
[citadel.git] / webcit / Makefile.in
index a9ecdd2fa31cde9f7db705792f3798cc4b7f761f..17fc32ea8952caf0e0bf1aa7d8bdcc2923334b9b 100644 (file)
@@ -20,11 +20,13 @@ distclean: clean
        rm -f Makefile config.cache config.log config.status
 
 
-webserver: webserver.o context_loop.o $(LIBOBJS)
-       $(CC) webserver.o context_loop.o $(LIBOBJS) $(LIBS) -o webserver
+webserver: webserver.o context_loop.o tools.o \
+       cookie_conversion.o locate_host.o $(LIBOBJS)
+       $(CC) webserver.o context_loop.o tools.o cookie_conversion.o \
+       locate_host.o $(LIBOBJS) $(LIBS) -o webserver
 
 webserver.o: webserver.c webcit.h
-       $(CC) $(CFLAGS) $(DEFS) -c -D_REENTRANT webserver.c
+       $(CC) $(CFLAGS) $(DEFS) -c -D_REENTRANT -DWEBCITDIR=\"`pwd`\" webserver.c
 
 context_loop.o: context_loop.c webcit.h webserver.h
        $(CC) $(CFLAGS) $(DEFS) -c -D_REENTRANT context_loop.c
@@ -35,9 +37,13 @@ snprintf.o: snprintf.c
 
 
 webcit: webcit.o auth.o tcp_sockets.o mainmenu.o serv_func.o who.o \
-       roomops.o tools.o messages.o userlist.o paging.o sysmsgs.o
+       roomops.o tools.o messages.o userlist.o paging.o sysmsgs.o \
+       mime_parser.o graphics.o netconf.o cookie_conversion.o siteconfig.o \
+       wildmat.o braindamage.o
        $(CC) webcit.o auth.o tcp_sockets.o mainmenu.o serv_func.o who.o \
-       tools.o roomops.o messages.o userlist.o paging.o sysmsgs.o -o webcit
+       tools.o roomops.o messages.o userlist.o paging.o sysmsgs.o siteconfig.o \
+       mime_parser.o graphics.o netconf.o cookie_conversion.o \
+       wildmat.o braindamage.o -o webcit
 
 webcit.o: webcit.c webcit.h child.h
        $(CC) $(CFLAGS) $(DEFS) -c webcit.c
@@ -69,12 +75,36 @@ roomops.o: roomops.c webcit.h child.h
 messages.o: messages.c webcit.h child.h
        $(CC) $(CFLAGS) $(DEFS) -c messages.c
 
+graphics.o: graphics.c webcit.h child.h
+       $(CC) $(CFLAGS) $(DEFS) -c graphics.c
+
 paging.o: paging.c webcit.h child.h
        $(CC) $(CFLAGS) $(DEFS) -c paging.c
 
 sysmsgs.o: sysmsgs.c webcit.h child.h
        $(CC) $(CFLAGS) $(DEFS) -c sysmsgs.c
 
+mime_parser.o: mime_parser.c webcit.h child.h mime_parser.h
+       $(CC) $(CFLAGS) $(DEFS) -c mime_parser.c
+
+cookie_conversion.o: cookie_conversion.c webcit.h child.h
+       $(CC) $(CFLAGS) $(DEFS) -c cookie_conversion.c
+
+siteconfig.o: siteconfig.c webcit.h child.h
+       $(CC) $(CFLAGS) $(DEFS) -c siteconfig.c
+
+netconf.o: netconf.c webcit.h child.h
+       $(CC) $(CFLAGS) $(DEFS) -c netconf.c
+
+locate_host.o: locate_host.c webcit.h child.h
+       $(CC) $(CFLAGS) $(DEFS) -c locate_host.c
+
+wildmat.o: wildmat.c webcit.h child.h
+       $(CC) $(CFLAGS) $(DEFS) -c wildmat.c
+
+braindamage.o: braindamage.c webcit.h child.h
+       $(CC) $(CFLAGS) $(DEFS) -c braindamage.c
+
 Makefile: $(srcdir)/Makefile.in config.status
        CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status