blob: 406c4b51222b2ea8108c8380694abd9ead45b137 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
### 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
|