diff options
| author | Jim Blandy | 1992-09-13 10:54:38 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-09-13 10:54:38 +0000 |
| commit | b7cceaf12a73559df9c2fcf135983b4c03b48061 (patch) | |
| tree | de45679165e29811fe12d574dbcba2d325a1ceef /lib-src | |
| parent | e4801b31ff4d1c01f79e25a2eefbd3877375386b (diff) | |
| download | emacs-b7cceaf12a73559df9c2fcf135983b4c03b48061.tar.gz emacs-b7cceaf12a73559df9c2fcf135983b4c03b48061.zip | |
*** empty log message ***
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index e1651ccdc68..51f96b1a03f 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -16,14 +16,19 @@ SHELL = /bin/sh | |||
| 16 | INSTALL = install | 16 | INSTALL = install |
| 17 | INSTALLFLAGS = | 17 | INSTALLFLAGS = |
| 18 | 18 | ||
| 19 | # Things that a user might actually run | 19 | # Things that a user might actually run, which should be installed in bindir. |
| 20 | INSTALLABLES = etags ctags emacsclient b2m | 20 | INSTALLABLES = etags ctags emacsclient b2m |
| 21 | 21 | ||
| 22 | # Things that Emacs runs internally, or during the build process. | 22 | # Things that Emacs runs internally, or during the build process, |
| 23 | # which should not be installed in bindir. | ||
| 23 | UTILITIES= test-distrib wakeup make-docfile digest-doc sorted-doc \ | 24 | UTILITIES= test-distrib wakeup make-docfile digest-doc sorted-doc \ |
| 24 | movemail cvtmail fakemail yow env emacsserver hexl timer rcs2log vcdiff | 25 | movemail cvtmail fakemail yow env emacsserver hexl timer |
| 25 | 26 | ||
| 26 | EXECUTABLES= ${UTILITIES} ${INSTALLABLES} | 27 | # Like UTILITIES, but they're not system-dependent, and should not be |
| 28 | # deleted by the distclean target. | ||
| 29 | SCRIPTS= rcs2log vcdiff | ||
| 30 | |||
| 31 | EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} | ||
| 27 | 32 | ||
| 28 | # These things are edited by ../configure; don't change anything before | 33 | # These things are edited by ../configure; don't change anything before |
| 29 | # or including the '='; everything after that gets blown away. | 34 | # or including the '='; everything after that gets blown away. |
| @@ -88,10 +93,10 @@ install.xenix: | |||
| 88 | 93 | ||
| 89 | 94 | ||
| 90 | clean mostlyclean: | 95 | clean mostlyclean: |
| 91 | -rm -f ${EXECUTABLES} core *.o | 96 | -rm -f ${INSTALLABLES} ${UTILITIES} core *.o |
| 92 | 97 | ||
| 93 | distclean: | 98 | distclean: |
| 94 | -rm -f ${EXECUTABLES} *~ \#* ../etc/DOC* core *.o | 99 | -rm -f ${INSTALLABLES} ${UTILITIES} *~ \#* ../etc/DOC* core *.o |
| 95 | cd ../arch-lib; rm -f ${EXECUTABLES} | 100 | cd ../arch-lib; rm -f ${EXECUTABLES} |
| 96 | 101 | ||
| 97 | realclean: distclean | 102 | realclean: distclean |