Initial revision
[emacs.git] / etc / Makefile
blob406c4b51222b2ea8108c8380694abd9ead45b137
1 ### Makefile for Emacs etc/ directory.
3 .PHONY: unlock relock
5 ## All non-directory files, if that matters.
6 SOURCES = [A-Z]* *.* *-* e/* refcards/* tutorials/* \
7 images/README images/*.* images/*/README images/*/*.* \
8 images/*/*/README images/*/*/*.*
10 unlock:
11 chmod u+w $(SOURCES)
13 relock:
14 chmod u-w $(SOURCES)
16 ## See e/README.
17 TIC=tic
18 e/eterm-color: e/eterm-color.ti
19 TERMINFO=`pwd`; export TERMINFO; $(TIC) e/eterm-color.ti
21 ## arch-tag: 4261f003-cf77-4478-a10a-5284e9d8f797
22 ### Makefile ends here