diff options
author | Arun Isaac | 2021-11-05 16:14:54 +0530 |
---|---|---|
committer | Arun Isaac | 2021-11-05 16:20:27 +0530 |
commit | c5aaf4befd2ed89299010eccb4c51464fcaa99d0 (patch) | |
tree | cba3c49825c6db78db942246e62dc2edf3e0e5c9 | |
parent | 0aaa24217d39a87636003a43719379f81e556e40 (diff) | |
download | ccwl-c5aaf4befd2ed89299010eccb4c51464fcaa99d0.tar.gz ccwl-c5aaf4befd2ed89299010eccb4c51464fcaa99d0.tar.lz ccwl-c5aaf4befd2ed89299010eccb4c51464fcaa99d0.zip |
Makefile: Do not clean files based on extension.
* Makefile.am (CLEANFILES): Replace doc/*.cwl, doc/*.dot, doc/*.out
and doc/*.png with DOC_SCM, DOC_IMAGES and DOC_OUT variables.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 5e92638..614e679 100644 --- a/Makefile.am +++ b/Makefile.am @@ -100,7 +100,7 @@ EXTRA_DIST += \ include .depends -CLEANFILES += doc/*.cwl doc/*.dot doc/*.out doc/*.png +CLEANFILES += $(DOC_SCM:.scm=.cwl) $(DOC_IMAGES) $(DOC_IMAGES:.png=.dot) $(DOC_OUT) CLEAN_DIRECTORIES = doc/cwl-output %.cwl: %.scm |