Commit 83c78d3a82fa76aaf7525772573b4a87b1bd072f
- Date: Sun Apr 27 09:04:05 +0000 2008
- Committer: Jonas Fonseca (fonseca@diku.dk)
- Author: Jonas Fonseca (fonseca@diku.dk)
- Commit SHA1: 83c78d3a82fa76aaf7525772573b4a87b1bd072f
- Tree SHA1: 073791e79630ef7b823bd77a2108ac8404fa7c0f
Makefile: remove bashism from distclean rule
Commit diff
| |   |
| 99 | 99 | $(RM) $(PROGS) core *.o *.xml |
| 100 | 100 | |
| 101 | 101 | distclean: clean |
| 102 | | $(RM) -r manual.html-chunked *.toc $(ALLDOC) |
| 103 | | $(RM) -r autom4te.cache aclocal.m4 config.{h,log,make,status} config.h.in configure |
| 102 | $(RM) -r manual.html-chunked autom4te.cache |
| 103 | $(RM) *.toc $(ALLDOC) aclocal.m4 configure |
| 104 | $(RM) config.h config.log config.make config.status config.h.in |
| 104 | 105 | |
| 105 | 106 | spell-check: |
| 106 | 107 | aspell --lang=en --check tig.1.txt tigrc.5.txt manual.txt |
| toggle raw diff |
--- a/Makefile
+++ b/Makefile
@@ -99,8 +99,9 @@ clean:
$(RM) $(PROGS) core *.o *.xml
distclean: clean
- $(RM) -r manual.html-chunked *.toc $(ALLDOC)
- $(RM) -r autom4te.cache aclocal.m4 config.{h,log,make,status} config.h.in configure
+ $(RM) -r manual.html-chunked autom4te.cache
+ $(RM) *.toc $(ALLDOC) aclocal.m4 configure
+ $(RM) config.h config.log config.make config.status config.h.in
spell-check:
aspell --lang=en --check tig.1.txt tigrc.5.txt manual.txt |