Makefile: added some more pretty things
authorArt Cancro <ajc@citadel.org>
Tue, 11 Jul 2023 02:24:25 +0000 (17:24 -0900)
committerArt Cancro <ajc@citadel.org>
Tue, 11 Jul 2023 02:24:25 +0000 (17:24 -0900)
citadel/.gitignore
citadel/Makefile

index 9b0c0e5635f155350351cb4506ecfdfb540643aa..0c8b0d34d48a22a27df68c1e6343f71fc69ce839 100644 (file)
@@ -29,7 +29,9 @@ keys
 netconfigs
 data
 package-version.txt
+core
 core.*
 utils/ctdl3264_structs.h
-ctdl3264
+ctdldump
+ctdlload
 config.mk
index 079f85a7ed3c9bdc75eb864213dd23ba497eff09..65a1e90c3fafb945a66db3e977d5b00afcc9cebc 100644 (file)
@@ -5,7 +5,7 @@
 # well on the Linux operating system (which uses the Linux kernel) and on BSD.
 #
 # This program is open source software.  Use, duplication, and/or
-# disclosure are subject to the GNU General Purpose License version 3.
+# disclosure are subject to the GNU General Public License version 3.
 
 # config.mk is generated by ./configure
 include config.mk
@@ -25,10 +25,11 @@ citserver: $(OBJECTS)
                -o citserver
 
 $(SOURCES): server/*.h server/modules/*/*.h
-       touch $@
+       @touch $@
 
 %.o: %.c
-       cc ${CFLAGS} -c $< -o $@
+       @echo $<
+       @cc ${CFLAGS} -c $< -o $@
 
 setup: utils/setup.c server/citadel_dirs.c utils/*.h server/*.h
        cc ${CFLAGS} ${LDFLAGS} utils/setup.c -lcitadel -o setup
@@ -65,9 +66,7 @@ distclean: clean
        rm -vf config.mk
 
 install: $(all) utils/*.sh
-       #
-       # Installing to ${CTDLDIR}
-       #
+       @echo Installing to ${CTDLDIR}
        @for x in $(all) utils/*.sh ; do \
                install -v -C -D -t ${CTDLDIR} $$x ;\
        done