Bring mumbleclean targets into conformance with GNU coding standards.
* Makefile.in (distclean): Call clean to do most of the work. Delete aixcc.c and TAGS. (realclean): Just call distclean.
This commit is contained in:
parent
d4acf74f7e
commit
39b649dd44
1 changed files with 9 additions and 3 deletions
|
@ -163,14 +163,20 @@ install: ${archlibdir}
|
|||
mv ${bindir}/$${file}.new ${bindir}/$${file} ; \
|
||||
done
|
||||
|
||||
uninstall:
|
||||
(cd ${bindir}; \
|
||||
rm -f ${INSTALLABLES} ${INSTALLABLE_SCRIPTS})
|
||||
(cd ${archlibdir}; \
|
||||
rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS})
|
||||
|
||||
clean mostlyclean:
|
||||
-rm -f ${INSTALLABLES} ${UTILITIES} core *.o
|
||||
|
||||
distclean:
|
||||
-rm -f ${INSTALLABLES} ${UTILITIES} ../etc/DOC* core *.o
|
||||
distclean: clean
|
||||
-rm -f ../etc/DOC* *.tab.c *.tab.h aixcc.c TAGS
|
||||
|
||||
realclean: distclean
|
||||
-rm TAGS aixcc.c
|
||||
true
|
||||
|
||||
extraclean: realclean
|
||||
-rm -f *~ \#*
|
||||
|
|
Loading…
Add table
Reference in a new issue