]> code.citadel.org Git - citadel.git/blobdiff - ctdlsh/Makefile
ctdlsh can now get and set server configuration varia bles
[citadel.git] / ctdlsh / Makefile
index 946dff0df0639d31eaa4affff96a75fd5c4f9558..a7d0deb68567a029aff5d121f6dfc3f676f90b40 100644 (file)
@@ -1,10 +1,11 @@
-OBJS := datetime.o export.o main.o passwd.o shutdown.o sockets.o who.o
+OBJS := datetime.o export.o main.o passwd.o shutdown.o sockets.o who.o config.o
 
 CFLAGS := -ggdb
+LDFLAGS :=
 
 # link
 ctdlsh: $(OBJS)
-       gcc $(OBJS) -lreadline -o ctdlsh
+       gcc $(OBJS) $(LDFLAGS) -lreadline -o ctdlsh
 
 # pull in dependency info for *existing* .o files
 -include $(OBJS:.o=.d)
@@ -17,3 +18,8 @@ ctdlsh: $(OBJS)
 # remove compilation products
 clean:
        rm -f ctdlsh *.o *.d
+
+distclean: clean
+
+install: ctdlsh
+       echo Not yet