diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-09-23 05:42:40 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-09-23 05:42:40 +0000 |
commit | 1d20ddf8f973c1a81ad36696516d1b725e8b4185 (patch) | |
tree | e0544b149e016cb90b75735f9835a21567fb1bcf /lib-src | |
parent | 5c2c86d2eaa6c3e0f2c722de0f0677d2e54b7972 (diff) | |
download | emacs-1d20ddf8f973c1a81ad36696516d1b725e8b4185.tar.gz |
(UTILITIES): Remove test-distrib, make-docfile, make-path.
(DONT_INSTALL): New variable--list those files here.
(clean): Delete the files in DONT_INSTALL.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 9ae70ceeb6b..d25a7a4161f 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -89,9 +89,11 @@ INSTALLABLE_SCRIPTS = rcs-checkin # Things that Emacs runs internally, or during the build process, # which should not be installed in bindir. -UTILITIES= test-distrib make-path wakeup profile make-docfile digest-doc \ +UTILITIES= wakeup profile digest-doc \ sorted-doc movemail cvtmail fakemail yow emacsserver hexl timer +DONT_INSTALL= test-distrib make-docfile make-path + # Like UTILITIES, but they're not system-dependent, and should not be # deleted by the distclean target. SCRIPTS= rcs2log vcdiff @@ -229,7 +231,7 @@ mostlyclean: -rm -f core *.o clean: mostlyclean - -rm -f ${INSTALLABLES} ${UTILITIES} + -rm -f ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL} distclean: clean -rm -f ../etc/DOC* *.tab.c *.tab.h aixcc.c TAGS |