aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-08-23 03:38:12 +0000
committerGlenn Morris2007-08-23 03:38:12 +0000
commit08039aa2949f9db06db3af6a78791dc157839a2b (patch)
tree5b43be4d3132d7fefc90913ee956aa56ead212a1
parent06974c33852c4c16289f0c0102ede2eea64b6543 (diff)
downloademacs-08039aa2949f9db06db3af6a78791dc157839a2b.tar.gz
emacs-08039aa2949f9db06db3af6a78791dc157839a2b.zip
(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.
-rw-r--r--etc/ChangeLog9
-rw-r--r--etc/Makefile42
2 files changed, 16 insertions, 35 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 2b306cc30bd..8ceaa6166ba 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,12 @@
12007-08-23 Glenn Morris <rgm@gnu.org>
2
3 * Makefile (mostlyclean, clean, distclean, maintainer-clean):
4 Delete these targets since nothing uses them.
5 (SOURCES): Update.
6 Move comments to e/README. Remove license from now-trivial file.
7
8 * e/README: New file, with most information formerly in Makefile.
9
12007-08-22 Michael Albinus <michael.albinus@gmx.de> 102007-08-22 Michael Albinus <michael.albinus@gmx.de>
2 11
3 * NEWS: `shell' prompts for the default directory if called with a 12 * NEWS: `shell' prompts for the default directory if called with a
diff --git a/etc/Makefile b/etc/Makefile
index 3b353da5cdb..406c4b51222 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -1,34 +1,11 @@
1### Makefile for Emacs etc/ directory 1### Makefile for Emacs etc/ directory.
2 2
3## Copyright (C) 1993, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 3.PHONY: unlock relock
4## 2007 Free Software Foundation, Inc.
5 4
6## This file is part of GNU Emacs. 5## All non-directory files, if that matters.
7 6SOURCES = [A-Z]* *.* *-* e/* refcards/* tutorials/* \
8## GNU Emacs is free software; you can redistribute it and/or modify 7 images/README images/*.* images/*/README images/*/*.* \
9## it under the terms of the GNU General Public License as published by 8 images/*/*/README images/*/*/*.*
10## the Free Software Foundation; either version 3, or (at your option)
11## any later version.
12
13## GNU Emacs is distributed in the hope that it will be useful,
14## but WITHOUT ANY WARRANTY; without even the implied warranty of
15## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16## GNU General Public License for more details.
17
18## You should have received a copy of the GNU General Public License
19## along with GNU Emacs; see the file COPYING. If not, write to the
20## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21## Boston, MA 02110-1301, USA.
22
23
24.PHONY: mostlyclean clean distclean maintainer-clean unlock relock
25
26
27mostlyclean clean distclean maintainer-clean:
28 -rm -f DOC*
29
30SOURCES = [0-9A-QS-Z]* README *.[ch16] emacs.* ms-* \
31 spook-lines termcap.*
32 9
33unlock: 10unlock:
34 chmod u+w $(SOURCES) 11 chmod u+w $(SOURCES)
@@ -36,15 +13,10 @@ unlock:
36relock: 13relock:
37 chmod u-w $(SOURCES) 14 chmod u-w $(SOURCES)
38 15
39# ${etcdir}/e/eterm-color is used by ../lisp/term.el. 16## See e/README.
40# TERMINFO systems use terminfo files compiled by the Terminfo Compiler (tic).
41# These files are binary, and depend on the version of tic, but they seem
42# to be system-independent and backwardly compatible.
43# So there should be no need to recompile the distributed binary version.
44TIC=tic 17TIC=tic
45e/eterm-color: e/eterm-color.ti 18e/eterm-color: e/eterm-color.ti
46 TERMINFO=`pwd`; export TERMINFO; $(TIC) e/eterm-color.ti 19 TERMINFO=`pwd`; export TERMINFO; $(TIC) e/eterm-color.ti
47 20
48
49## arch-tag: 4261f003-cf77-4478-a10a-5284e9d8f797 21## arch-tag: 4261f003-cf77-4478-a10a-5284e9d8f797
50### Makefile ends here 22### Makefile ends here