# HG changeset patch # User Eric S. Raymond # Date 732527360 0 # Node ID 29579cd519814eb25b9b58809a3054dc609af989 # Parent 17cbbc48a154c8c5c7662f202bd16e19b9cf1611 Added unlock and relock. diff -r 17cbbc48a154 -r 29579cd51981 lib-src/Makefile.in --- a/lib-src/Makefile.in Fri Mar 19 07:37:19 1993 +0000 +++ b/lib-src/Makefile.in Fri Mar 19 07:49:20 1993 +0000 @@ -58,6 +58,16 @@ # be installed at once. archlibdir=${libdir}/emacs/${version}/${configname} +# ====================== Developer's configuration ======================= + +# The following assignments make sense if you're running Emacs on a single +# machine, one version at a time, and you want changes to the lisp and etc +# directories in the source tree to show up immediately in your working +# environment. It saves a great deal of disk space by not duplicating the +# lisp and etc directories. +# +# archlibdir=${srcdir}/bin + # ==================== Utility Programs for the Build ==================== # Allow the user to specify the install program. @@ -82,6 +92,9 @@ EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} +SOURCES = COPYING ChangeLog Makefile.in README aixcc.lex emacs.csh \ + makedoc.com *.[chy] rcs2log vcdiff + ### We need to #define emacs to get the right versions of some files. ### Some other files - those shared with other GNU utilities - need ### HAVE_CONFIG_H #defined before they know they can take advantage of @@ -140,6 +153,12 @@ extraclean: realclean -rm -f *~ \#* +unlock: + chmod u+w $(SOURCES) + +relock: + chmod u-w $(SOURCES) + # Test the contents of the directory. check: @echo "We don't have any tests for GNU Emacs yet."