From: Glenn Morris Date: Thu, 23 Aug 2007 03:38:12 +0000 (+0000) Subject: (mostlyclean, clean, distclean, maintainer-clean): Delete these X-Git-Tag: emacs-pretest-23.0.90~11367 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=08039aa2949f9db06db3af6a78791dc157839a2b;p=emacs.git (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. --- diff --git a/etc/ChangeLog b/etc/ChangeLog index 2b306cc30bd..8ceaa6166ba 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -1,3 +1,12 @@ +2007-08-23 Glenn Morris + + * Makefile (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. + + * e/README: New file, with most information formerly in Makefile. + 2007-08-22 Michael Albinus * 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 @@ -### Makefile for Emacs etc/ directory +### Makefile for Emacs etc/ directory. -## Copyright (C) 1993, 1994, 2001, 2002, 2003, 2004, 2005, 2006, -## 2007 Free Software Foundation, Inc. +.PHONY: unlock relock -## This file is part of GNU Emacs. - -## GNU Emacs is free software; you can redistribute it and/or modify -## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 3, or (at your option) -## any later version. - -## GNU Emacs is distributed in the hope that it will be useful, -## but WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -## GNU General Public License for more details. - -## You should have received a copy of the GNU General Public License -## along with GNU Emacs; see the file COPYING. If not, write to the -## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -## Boston, MA 02110-1301, USA. - - -.PHONY: mostlyclean clean distclean maintainer-clean unlock relock - - -mostlyclean clean distclean maintainer-clean: - -rm -f DOC* - -SOURCES = [0-9A-QS-Z]* README *.[ch16] emacs.* ms-* \ - spook-lines termcap.* +## 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) @@ -36,15 +13,10 @@ unlock: relock: chmod u-w $(SOURCES) -# ${etcdir}/e/eterm-color is used by ../lisp/term.el. -# TERMINFO systems use terminfo files compiled by the Terminfo Compiler (tic). -# These files are binary, and depend on the version of tic, but they seem -# to be system-independent and backwardly compatible. -# So there should be no need to recompile the distributed binary version. +## 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