aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorJim Blandy1992-09-13 10:54:38 +0000
committerJim Blandy1992-09-13 10:54:38 +0000
commitb7cceaf12a73559df9c2fcf135983b4c03b48061 (patch)
treede45679165e29811fe12d574dbcba2d325a1ceef /lib-src
parente4801b31ff4d1c01f79e25a2eefbd3877375386b (diff)
downloademacs-b7cceaf12a73559df9c2fcf135983b4c03b48061.tar.gz
emacs-b7cceaf12a73559df9c2fcf135983b4c03b48061.zip
*** empty log message ***
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/Makefile.in17
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
16INSTALL = install 16INSTALL = install
17INSTALLFLAGS = 17INSTALLFLAGS =
18 18
19# Things that a user might actually run 19# Things that a user might actually run, which should be installed in bindir.
20INSTALLABLES = etags ctags emacsclient b2m 20INSTALLABLES = 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.
23UTILITIES= test-distrib wakeup make-docfile digest-doc sorted-doc \ 24UTILITIES= 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
26EXECUTABLES= ${UTILITIES} ${INSTALLABLES} 27# Like UTILITIES, but they're not system-dependent, and should not be
28# deleted by the distclean target.
29SCRIPTS= rcs2log vcdiff
30
31EXECUTABLES= ${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
90clean mostlyclean: 95clean mostlyclean:
91 -rm -f ${EXECUTABLES} core *.o 96 -rm -f ${INSTALLABLES} ${UTILITIES} core *.o
92 97
93distclean: 98distclean:
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
97realclean: distclean 102realclean: distclean