summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-09-13 10:54:38 +0000
committerJim Blandy <jimb@redhat.com>1992-09-13 10:54:38 +0000
commitf8a2cfe1da5e6492a6a93442ca1bbce7a1f99b1f (patch)
tree8fbfa541ce4c6b00a684bd2a75c73fed06cd50ce /lib-src
parenta48b35e69df1d1c24baa021ec481387b1ebbb150 (diff)
downloademacs-f8a2cfe1da5e6492a6a93442ca1bbce7a1f99b1f.tar.gz
*** 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
INSTALL = install
INSTALLFLAGS =
-# Things that a user might actually run
+# Things that a user might actually run, which should be installed in bindir.
INSTALLABLES = etags ctags emacsclient b2m
-# Things that Emacs runs internally, or during the build process.
+# Things that Emacs runs internally, or during the build process,
+# which should not be installed in bindir.
UTILITIES= test-distrib wakeup make-docfile digest-doc sorted-doc \
- movemail cvtmail fakemail yow env emacsserver hexl timer rcs2log vcdiff
+ movemail cvtmail fakemail yow env emacsserver hexl timer
-EXECUTABLES= ${UTILITIES} ${INSTALLABLES}
+# Like UTILITIES, but they're not system-dependent, and should not be
+# deleted by the distclean target.
+SCRIPTS= rcs2log vcdiff
+
+EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS}
# These things are edited by ../configure; don't change anything before
# or including the '='; everything after that gets blown away.
@@ -88,10 +93,10 @@ install.xenix:
clean mostlyclean:
- -rm -f ${EXECUTABLES} core *.o
+ -rm -f ${INSTALLABLES} ${UTILITIES} core *.o
distclean:
- -rm -f ${EXECUTABLES} *~ \#* ../etc/DOC* core *.o
+ -rm -f ${INSTALLABLES} ${UTILITIES} *~ \#* ../etc/DOC* core *.o
cd ../arch-lib; rm -f ${EXECUTABLES}
realclean: distclean