aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorEric S. Raymond1993-03-19 07:49:20 +0000
committerEric S. Raymond1993-03-19 07:49:20 +0000
commit41f86d5a05793b6d75cdca8b1d5c35e048750ca9 (patch)
treeb2ae4f7beb41a50f17fc28373a01a08add2c0841 /lib-src
parent29c0047b0798effdc5ab1f6e6aff8aef7dbd5176 (diff)
downloademacs-41f86d5a05793b6d75cdca8b1d5c35e048750ca9.tar.gz
emacs-41f86d5a05793b6d75cdca8b1d5c35e048750ca9.zip
Added unlock and relock.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/Makefile.in19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index 15ba317c928..eda56a40e9a 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -58,6 +58,16 @@ srcdir=.
58# be installed at once. 58# be installed at once.
59archlibdir=${libdir}/emacs/${version}/${configname} 59archlibdir=${libdir}/emacs/${version}/${configname}
60 60
61# ====================== Developer's configuration =======================
62
63# The following assignments make sense if you're running Emacs on a single
64# machine, one version at a time, and you want changes to the lisp and etc
65# directories in the source tree to show up immediately in your working
66# environment. It saves a great deal of disk space by not duplicating the
67# lisp and etc directories.
68#
69# archlibdir=${srcdir}/bin
70
61# ==================== Utility Programs for the Build ==================== 71# ==================== Utility Programs for the Build ====================
62 72
63# Allow the user to specify the install program. 73# Allow the user to specify the install program.
@@ -82,6 +92,9 @@ SCRIPTS= rcs2log vcdiff
82 92
83EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} 93EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS}
84 94
95SOURCES = COPYING ChangeLog Makefile.in README aixcc.lex emacs.csh \
96 makedoc.com *.[chy] rcs2log vcdiff
97
85### We need to #define emacs to get the right versions of some files. 98### We need to #define emacs to get the right versions of some files.
86### Some other files - those shared with other GNU utilities - need 99### Some other files - those shared with other GNU utilities - need
87### HAVE_CONFIG_H #defined before they know they can take advantage of 100### HAVE_CONFIG_H #defined before they know they can take advantage of
@@ -140,6 +153,12 @@ realclean: distclean
140extraclean: realclean 153extraclean: realclean
141 -rm -f *~ \#* 154 -rm -f *~ \#*
142 155
156unlock:
157 chmod u+w $(SOURCES)
158
159relock:
160 chmod u-w $(SOURCES)
161
143# Test the contents of the directory. 162# Test the contents of the directory.
144check: 163check:
145 @echo "We don't have any tests for GNU Emacs yet." 164 @echo "We don't have any tests for GNU Emacs yet."