]> code.citadel.org Git - citadel.git/commitdiff
* Makefile.tmpl: fix to build client with old Configure script
authorNathan Bryant <loanshark@uncensored.citadel.org>
Tue, 20 Oct 1998 18:15:19 +0000 (18:15 +0000)
committerNathan Bryant <loanshark@uncensored.citadel.org>
Tue, 20 Oct 1998 18:15:19 +0000 (18:15 +0000)
citadel/ChangeLog
citadel/Makefile.tmpl

index 027946ea92aabebf147c535d0a3ddbc61f5fb266..b605753754705aa2778e69afe9aa59db908f89f1 100644 (file)
@@ -1,6 +1,10 @@
+1998-10-20 Nathan Bryant <bryant@cs.usm.maine.edu>
+       * Makefile.tmpl: fix to build client with old Configure script
+
 Mon Oct 19 20:52:55 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * Client ability to force display of prompts in Mail rooms, even when
          the user has prompting turned off (citadel.rc option)
+
 1998-10-16 Nathan Bryant <bryant@cs.usm.maine.edu>
        * sysdep.c (cprintf): generate a newline on truncated buffer
        * room_ops.c: exploitable overrun fixes
index ac2d00ca151bb7c4f8ba52c83971ca92141afb04..02c151c699987f2e8d525078caa0835a46d91a9b 100644 (file)
@@ -29,9 +29,10 @@ serv_modules: $(SERV_MODULES)
 #
 
 citadel: ipc_c_tcp.o citadel.o rooms.o routines.o routines2.o messages.o \
-       commands.o client_chat.o serv_info.o
+       commands.o client_chat.o serv_info.o tools.o
        $(CC) $(CFLAGS) ipc_c_tcp.o citadel.o rooms.o routines.o routines2.o \
-       messages.o commands.o client_chat.o serv_info.o $(LFLAGS) -o citadel
+       messages.o commands.o client_chat.o serv_info.o tools.o $(LFLAGS) -o \
+       citadel
 
 netpoll: netpoll.o config.o ipc_c_tcp.o
        $(CC) $(CFLAGS) netpoll.o config.o ipc_c_tcp.o $(LFLAGS) -o netpoll
@@ -39,6 +40,9 @@ netpoll: netpoll.o config.o ipc_c_tcp.o
 netpoll.o: netpoll.c
        $(CC) $(CFLAGS) -c netpoll.c
 
+tools.o: tools.c
+       $(CC) $(CFLAGS) -c tools.c
+
 ipc_c_tcp.o: ipc_c_tcp.c
        $(CC) $(CFLAGS) -c ipc_c_tcp.c