From 1e5a1cb342d8cba5c55a720eaca1f095d516ba51 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 6 Jun 2016 08:46:09 +0200 Subject: [PATCH] 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 > $@ -- 2.39.2