1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 00:01:33 -08:00
emacs/etc/Makefile
Glenn Morris 08039aa294 (mostlyclean, clean, distclean, maintainer-clean): Delete these
targets since nothing uses them.
(SOURCES): Update.
Move comments to e/README.  Remove license from now-trivial file.
2007-08-23 03:38:12 +00:00

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