diff options
| author | Jim Blandy | 1993-06-16 23:49:07 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-06-16 23:49:07 +0000 |
| commit | 39b649dd44b673aa5aea845ebfd7c453cd9fe508 (patch) | |
| tree | 4c74d62d370045ad0e34494aee549f7cc95cfec4 /lib-src | |
| parent | d4acf74f7e75b98e987110e06c7351b417222e59 (diff) | |
| download | emacs-39b649dd44b673aa5aea845ebfd7c453cd9fe508.tar.gz emacs-39b649dd44b673aa5aea845ebfd7c453cd9fe508.zip | |
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} | |||
| 163 | mv ${bindir}/$${file}.new ${bindir}/$${file} ; \ | 163 | mv ${bindir}/$${file}.new ${bindir}/$${file} ; \ |
| 164 | done | 164 | done |
| 165 | 165 | ||
| 166 | uninstall: | ||
| 167 | (cd ${bindir}; \ | ||
| 168 | rm -f ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}) | ||
| 169 | (cd ${archlibdir}; \ | ||
| 170 | rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}) | ||
| 171 | |||
| 166 | clean mostlyclean: | 172 | clean mostlyclean: |
| 167 | -rm -f ${INSTALLABLES} ${UTILITIES} core *.o | 173 | -rm -f ${INSTALLABLES} ${UTILITIES} core *.o |
| 168 | 174 | ||
| 169 | distclean: | 175 | distclean: clean |
| 170 | -rm -f ${INSTALLABLES} ${UTILITIES} ../etc/DOC* core *.o | 176 | -rm -f ../etc/DOC* *.tab.c *.tab.h aixcc.c TAGS |
| 171 | 177 | ||
| 172 | realclean: distclean | 178 | realclean: distclean |
| 173 | -rm TAGS aixcc.c | 179 | true |
| 174 | 180 | ||
| 175 | extraclean: realclean | 181 | extraclean: realclean |
| 176 | -rm -f *~ \#* | 182 | -rm -f *~ \#* |