From 510184e5dc746a9be6ab158de92db89cde198e00 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 10 Jul 2023 17:24:25 -0900 Subject: [PATCH] Makefile: added some more pretty things --- citadel/.gitignore | 4 +++- citadel/Makefile | 11 +++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/citadel/.gitignore b/citadel/.gitignore index 9b0c0e563..0c8b0d34d 100644 --- a/citadel/.gitignore +++ b/citadel/.gitignore @@ -29,7 +29,9 @@ keys netconfigs data package-version.txt +core core.* utils/ctdl3264_structs.h -ctdl3264 +ctdldump +ctdlload config.mk diff --git a/citadel/Makefile b/citadel/Makefile index 079f85a7e..65a1e90c3 100644 --- a/citadel/Makefile +++ b/citadel/Makefile @@ -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 -- 2.39.2