aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorJim Blandy1993-06-16 16:32:32 +0000
committerJim Blandy1993-06-16 16:32:32 +0000
commitbfb7b57017ab437ce55bca19ef4eaa354a7a6112 (patch)
treeaabb517a0926e1f9b85710d85cb353d17ac3dade /src/Makefile.in
parente87f38ef9d2301c681a7dcf876cceca747e7846f (diff)
downloademacs-bfb7b57017ab437ce55bca19ef4eaa354a7a6112.tar.gz
emacs-bfb7b57017ab437ce55bca19ef4eaa354a7a6112.zip
Bring mumbleclean targets into conformance with GNU coding standards.
* Makefile.in (mostlyclean): New target. (clean): Just call mostlyclean. Get rid of ../etc/DOC too. (distclean): Use clean to do most of the work. Get rid of ../etc/DOC-* too. (realclean): New target.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 4698ea1758b..ffeb640bec9 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -28,17 +28,19 @@ all: doall
28doall: xmakefile 28doall: xmakefile
29 $(MAKE) ${SUBMAKEFLAGS} -f xmakefile ${MFLAGS} all 29 $(MAKE) ${SUBMAKEFLAGS} -f xmakefile ${MFLAGS} all
30 30
31mostlyclean:
32 rm -f temacs emacs prefix-args xmakefile* core \#* *.o libXMenu11.a
33 rm -f ../etc/DOC
34clean: mostlyclean
35 true
31#This is used in making a distribution. 36#This is used in making a distribution.
32#Do not use it on development directories! 37#Do not use it on development directories!
33distclean: 38distclean: clean
34 -rm -f paths.h config.h emacs-* temacs emacs xmakefile core *.o 39 rm -f paths.h config.h emacs-* ../etc/DOC-*
35 40realclean: distclean
36clean: 41 rm -f TAGS
37 -rm -f temacs emacs prefix-args xmakefile* core \#* *.o libXMenu11.a
38
39versionclean: 42versionclean:
40 -rm -f emacs emacs-* ../etc/DOC* 43 -rm -f emacs emacs-* ../etc/DOC*
41
42extraclean: distclean 44extraclean: distclean
43 -rm -f *~ \#* m/*~ s/*~ 45 -rm -f *~ \#* m/*~ s/*~
44 46