Non-verbose build

Verbose when build with `V=1'.
This commit is contained in:
Bert Münnich 2017-09-08 16:49:31 +02:00
parent a46006f527
commit a1b2fd2774
1 changed files with 12 additions and 0 deletions

View File

@ -30,29 +30,41 @@ $(OBJ): Makefile
-include $(DEP) -include $(DEP)
%.o: %.c %.o: %.c
@echo "CC $<"
$(CC) $(CFLAGS) $(CPPFLAGS) $(DEPFLAGS) -c -o $@ $< $(CC) $(CFLAGS) $(CPPFLAGS) $(DEPFLAGS) -c -o $@ $<
config.h: config.h:
@echo "GEN $@"
cp $(SRCDIR)/config.def.h $@ cp $(SRCDIR)/config.def.h $@
sxiv: $(OBJ) sxiv: $(OBJ)
@echo "LINK $@"
$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LDLIBS) $(CC) $(LDFLAGS) -o $@ $(OBJ) $(LDLIBS)
clean: clean:
rm -f $(OBJ) $(DEP) sxiv rm -f $(OBJ) $(DEP) sxiv
install: all install: all
@echo "INSTALL bin/sxiv"
mkdir -p $(DESTDIR)$(PREFIX)/bin mkdir -p $(DESTDIR)$(PREFIX)/bin
cp sxiv $(DESTDIR)$(PREFIX)/bin/ cp sxiv $(DESTDIR)$(PREFIX)/bin/
chmod 755 $(DESTDIR)$(PREFIX)/bin/sxiv chmod 755 $(DESTDIR)$(PREFIX)/bin/sxiv
@echo "INSTALL sxiv.1"
mkdir -p $(DESTDIR)$(MANPREFIX)/man1 mkdir -p $(DESTDIR)$(MANPREFIX)/man1
sed "s!PREFIX!$(PREFIX)!g; s!VERSION!$(VERSION)!g" sxiv.1 > $(DESTDIR)$(MANPREFIX)/man1/sxiv.1 sed "s!PREFIX!$(PREFIX)!g; s!VERSION!$(VERSION)!g" sxiv.1 > $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
chmod 644 $(DESTDIR)$(MANPREFIX)/man1/sxiv.1 chmod 644 $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
@echo "INSTALL share/sxiv/"
mkdir -p $(DESTDIR)$(PREFIX)/share/sxiv/exec mkdir -p $(DESTDIR)$(PREFIX)/share/sxiv/exec
cp exec/* $(DESTDIR)$(PREFIX)/share/sxiv/exec/ cp exec/* $(DESTDIR)$(PREFIX)/share/sxiv/exec/
chmod 755 $(DESTDIR)$(PREFIX)/share/sxiv/exec/* chmod 755 $(DESTDIR)$(PREFIX)/share/sxiv/exec/*
uninstall: uninstall:
@echo "REMOVE bin/sxiv"
rm -f $(DESTDIR)$(PREFIX)/bin/sxiv rm -f $(DESTDIR)$(PREFIX)/bin/sxiv
@echo "REMOVE sxiv.1"
rm -f $(DESTDIR)$(MANPREFIX)/man1/sxiv.1 rm -f $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
@echo "REMOVE share/sxiv/"
rm -rf $(DESTDIR)$(PREFIX)/share/sxiv rm -rf $(DESTDIR)$(PREFIX)/share/sxiv
$(V).SILENT: