summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBert Münnich <ber.t@posteo.de>2017-09-08 16:49:31 +0200
committerBert Münnich <ber.t@posteo.de>2017-09-08 16:51:47 +0200
commita1b2fd277432a4aa3db11ad9f88ee9abfbacf818 (patch)
tree80cb26d9c14e6b8291246d66f92c5c6fc009f535
parenta46006f527db5743c3cb43e541857705a05884cf (diff)
downloadnsxiv-a1b2fd277432a4aa3db11ad9f88ee9abfbacf818.tar.zst
Non-verbose build
Verbose when build with `V=1'.
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f7654da..a31df1e 100644
--- a/Makefile
+++ b/Makefile
@@ -30,29 +30,41 @@ $(OBJ): Makefile
-include $(DEP)
%.o: %.c
+ @echo "CC $<"
$(CC) $(CFLAGS) $(CPPFLAGS) $(DEPFLAGS) -c -o $@ $<
config.h:
+ @echo "GEN $@"
cp $(SRCDIR)/config.def.h $@
sxiv: $(OBJ)
+ @echo "LINK $@"
$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LDLIBS)
clean:
rm -f $(OBJ) $(DEP) sxiv
install: all
+ @echo "INSTALL bin/sxiv"
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp sxiv $(DESTDIR)$(PREFIX)/bin/
chmod 755 $(DESTDIR)$(PREFIX)/bin/sxiv
+ @echo "INSTALL sxiv.1"
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
sed "s!PREFIX!$(PREFIX)!g; s!VERSION!$(VERSION)!g" sxiv.1 > $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
chmod 644 $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
+ @echo "INSTALL share/sxiv/"
mkdir -p $(DESTDIR)$(PREFIX)/share/sxiv/exec
cp exec/* $(DESTDIR)$(PREFIX)/share/sxiv/exec/
chmod 755 $(DESTDIR)$(PREFIX)/share/sxiv/exec/*
uninstall:
+ @echo "REMOVE bin/sxiv"
rm -f $(DESTDIR)$(PREFIX)/bin/sxiv
+ @echo "REMOVE sxiv.1"
rm -f $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
+ @echo "REMOVE share/sxiv/"
rm -rf $(DESTDIR)$(PREFIX)/share/sxiv
+
+$(V).SILENT:
+