diff options
author | Jim Blandy <jimb@redhat.com> | 1993-06-16 23:49:07 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-06-16 23:49:07 +0000 |
commit | 39b649dd44b673aa5aea845ebfd7c453cd9fe508 (patch) | |
tree | 4c74d62d370045ad0e34494aee549f7cc95cfec4 /lib-src | |
parent | d4acf74f7e75b98e987110e06c7351b417222e59 (diff) | |
download | emacs-39b649dd44b673aa5aea845ebfd7c453cd9fe508.tar.gz |
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.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/Makefile.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index c42b6252041..1a8256999ea 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -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 *~ \#* |