view etc/Makefile @ 91015:b83d0dadb2a7

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 857-865) - Update from CVS - Merge from emacs--rel--22 - Update from CVS: lisp/emacs-lisp/avl-tree.el: New file. - Remove RCS keywords * emacs--rel--22 (patch 97-100) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 246-247) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-252
author Miles Bader <miles@gnu.org>
date Wed, 29 Aug 2007 05:03:40 +0000
parents f55f9811f5d7 5c8377e7c2c6
children
line wrap: on
line source

### 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