diff options
| author | Jim Blandy | 1993-06-16 16:32:32 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-06-16 16:32:32 +0000 |
| commit | bfb7b57017ab437ce55bca19ef4eaa354a7a6112 (patch) | |
| tree | aabb517a0926e1f9b85710d85cb353d17ac3dade /src/Makefile.in | |
| parent | e87f38ef9d2301c681a7dcf876cceca747e7846f (diff) | |
| download | emacs-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.in | 16 |
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 | |||
| 28 | doall: xmakefile | 28 | doall: xmakefile |
| 29 | $(MAKE) ${SUBMAKEFLAGS} -f xmakefile ${MFLAGS} all | 29 | $(MAKE) ${SUBMAKEFLAGS} -f xmakefile ${MFLAGS} all |
| 30 | 30 | ||
| 31 | mostlyclean: | ||
| 32 | rm -f temacs emacs prefix-args xmakefile* core \#* *.o libXMenu11.a | ||
| 33 | rm -f ../etc/DOC | ||
| 34 | clean: 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! |
| 33 | distclean: | 38 | distclean: 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 | 40 | realclean: distclean | |
| 36 | clean: | 41 | rm -f TAGS |
| 37 | -rm -f temacs emacs prefix-args xmakefile* core \#* *.o libXMenu11.a | ||
| 38 | |||
| 39 | versionclean: | 42 | versionclean: |
| 40 | -rm -f emacs emacs-* ../etc/DOC* | 43 | -rm -f emacs emacs-* ../etc/DOC* |
| 41 | |||
| 42 | extraclean: distclean | 44 | extraclean: distclean |
| 43 | -rm -f *~ \#* m/*~ s/*~ | 45 | -rm -f *~ \#* m/*~ s/*~ |
| 44 | 46 | ||