mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-28 00:01:33 -08:00
targets since nothing uses them. (SOURCES): Update. Move comments to e/README. Remove license from now-trivial file.
22 lines
505 B
Makefile
22 lines
505 B
Makefile
### Makefile for Emacs etc/ directory.
|
|
|
|
.PHONY: unlock relock
|
|
|
|
## All non-directory files, if that matters.
|
|
SOURCES = [A-Z]* *.* *-* e/* refcards/* tutorials/* \
|
|
images/README images/*.* images/*/README images/*/*.* \
|
|
images/*/*/README images/*/*/*.*
|
|
|
|
unlock:
|
|
chmod u+w $(SOURCES)
|
|
|
|
relock:
|
|
chmod u-w $(SOURCES)
|
|
|
|
## See e/README.
|
|
TIC=tic
|
|
e/eterm-color: e/eterm-color.ti
|
|
TERMINFO=`pwd`; export TERMINFO; $(TIC) e/eterm-color.ti
|
|
|
|
## arch-tag: 4261f003-cf77-4478-a10a-5284e9d8f797
|
|
### Makefile ends here
|