aboutsummaryrefslogtreecommitdiffstats
path: root/OsmoNITB/Makefile
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2016-10-17 06:47:22 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2016-10-21 02:22:02 +0200
commit722c2fd5797a49b96570fbb697eb9b4fc374e237 (patch)
tree40436e4ec5ca62f971263d26346830b955bc9cb4 /OsmoNITB/Makefile
parentf1b6500afd63377c70c4da33783d6fb403ea69c6 (diff)
fix 'make clean': shell glob, ignore failure
Unfortunately a glob like osmo-x__*.{svg,png} doesn't work, so have the suffixes in separate globs. Add dashes to indicate that failure should be ignored. Change-Id: I6bc4d9ea72b43a573acbc860c23397f748de2c7b
Diffstat (limited to 'OsmoNITB/Makefile')
-rw-r--r--OsmoNITB/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/OsmoNITB/Makefile b/OsmoNITB/Makefile
index e68b9b0..99cd317 100644
--- a/OsmoNITB/Makefile
+++ b/OsmoNITB/Makefile
@@ -22,8 +22,10 @@ include $(TOPDIR)/build/Makefile.inc
osmonitb-usermanual.pdf: chapters/*.adoc
clean:
- rm -rf $(cleanfiles)
- rm -rf osmonitb-usermanual__*.{svg,png,check}
+ -rm -rf $(cleanfiles)
+ -rm osmonitb-usermanual__*.svg
+ -rm osmonitb-usermanual__*.png
+ -rm osmonitb-usermanual.check
gen-nitb-vty-docbook: FORCE
$(call command,xsltproc -o generated/combined1.xml \