From: Andre Noll Date: Mon, 6 Jun 2016 06:46:09 +0000 (+0200) Subject: build: Don't remove adu.png on make clean. X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=commitdiff_plain;h=1e5a1cb342d8cba5c55a720eaca1f095d516ba51 build: Don't remove adu.png on make clean. This was appropriate with the old logo which was generated from a .sk source file. The new logo, however, only exists in png format, so we should never remove it. The adu.sk~ file can also be skipped from the list of files to be removed by make clean. --- diff --git a/Makefile b/Makefile index 00ef9e8..58202a2 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,7 @@ adu.1: adu adu.1.inc man2html $< | sed -e 's|^
$$|

|g' > $@ clean: - rm -f *.o adu *cmdline.c *cmdline.h adu.1 adu.1.html adu.png index.html adu.sk~ + rm -f *.o adu *cmdline.c *cmdline.h adu.1 adu.1.html index.html index.html: adu.1.html index.html.in INSTALL README sed -e '/@README@/,$$d' index.html.in > $@