Add copyright notice.
[emacs.git] / lisp / Makefile.in
blob966ac9b8cf562d47e8f2644f0a83722604ce23de
1 # Maintenance productions for the Lisp directory
2 # Copyright (C) 2000, 2001 Free Software Foundation, Inc.
4 # This file is part of GNU Emacs.
6 # GNU Emacs is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
21 SHELL = /bin/sh
23 lisp=@srcdir@
24 VPATH=@srcdir@
25 srcdir=@srcdir@/..
27 # You can specify a different executable on the make command line,
28 # e.g. "make EMACS=../src/emacs ...".
30 EMACS = ../src/emacs
32 # Command line flags for Emacs. This must include --multibyte,
33 # otherwise some files will not compile.
35 EMACSOPT = -batch --no-site-file --multibyte
37 SOURCES = *.el COPYING Makefile
38 lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el
39 lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el
40 ETAGS = ../lib-src/etags
42 # Files which should not be compiled. If you change the name `DONTCOMPILE'
43 # to something different, you'll have to change make-dist as well.
45 # - emacs-lisp/cl-specs.el: only contains `def-edebug-spec's so there's
46 # no point compiling it, although it doesn't hurt.
48 DONTCOMPILE = \
49 $(lisp)/cus-load.el \
50 $(lisp)/cus-start.el \
51 $(lisp)/emacs-lisp/cl-specs.el \
52 $(lisp)/eshell/esh-maint.el \
53 $(lisp)/eshell/esh-groups.el \
54 $(lisp)/finder-inf.el \
55 $(lisp)/forms-d2.el \
56 $(lisp)/forms-pass.el \
57 $(lisp)/generic-x.el \
58 $(lisp)/international/latin-1.el \
59 $(lisp)/international/latin-2.el \
60 $(lisp)/international/latin-3.el \
61 $(lisp)/international/latin-4.el \
62 $(lisp)/international/latin-5.el \
63 $(lisp)/international/latin-8.el \
64 $(lisp)/international/latin-9.el \
65 $(lisp)/international/mule-conf.el \
66 $(lisp)/loaddefs.el \
67 $(lisp)/loadup.el \
68 $(lisp)/mail/blessmail.el \
69 $(lisp)/mail/sc.el \
70 $(lisp)/patcomp.el \
71 $(lisp)/paths.el \
72 $(lisp)/play/bruce.el \
73 $(lisp)/subdirs.el \
74 $(lisp)/term/internal.el \
75 $(lisp)/term/AT386.el \
76 $(lisp)/term/apollo.el \
77 $(lisp)/term/bobcat.el \
78 $(lisp)/term/iris-ansi.el \
79 $(lisp)/term/keyswap.el \
80 $(lisp)/term/linux.el \
81 $(lisp)/term/lk201.el \
82 $(lisp)/term/news.el \
83 $(lisp)/term/vt102.el \
84 $(lisp)/term/vt125.el \
85 $(lisp)/term/vt200.el \
86 $(lisp)/term/vt201.el \
87 $(lisp)/term/vt220.el \
88 $(lisp)/term/vt240.el \
89 $(lisp)/term/vt300.el \
90 $(lisp)/term/vt320.el \
91 $(lisp)/term/vt400.el \
92 $(lisp)/term/vt420.el \
93 $(lisp)/term/wyse50.el \
94 $(lisp)/term/xterm.el \
95 $(lisp)/version.el
97 # Files to compile before others during a bootstrap. This is done
98 # to speed up the bootstrap process.
100 COMPILE_FIRST = \
101 $(lisp)/emacs-lisp/byte-opt.el \
102 $(lisp)/emacs-lisp/bytecomp.el \
103 $(lisp)/subr.el
105 # The actual Emacs command run in the targets below.
107 emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT)
109 # Common command to find subdirectories
111 setwins=subdirs=`find $$wd -type d -print`; \
112 for file in $$subdirs; do \
113 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \
114 *) wins="$$wins $$file" ;; \
115 esac; \
116 done
118 doit:
120 cus-load.el:
121 touch $@
122 custom-deps: cus-load.el doit
123 wd=$(lisp); $(setwins); \
124 echo Directories: $$wins; \
125 $(EMACS) $(EMACSOPT) -l cus-dep -f custom-make-dependencies $$wins
127 finder-inf.el:
128 echo "(provide 'finder-inf)" >> $@
129 finder-data: finder-inf.el doit
130 wd=$(lisp); $(setwins); \
131 echo Directories: $$wins; \
132 $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins
134 loaddefs.el:
135 echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@
136 echo ";;" >> $@; echo ";;; Code:" >> $@
137 echo "\f" >> $@
138 echo ";;; Local Variables:" >> $@
139 echo ";;; version-control: never" >> $@
140 echo ";;; no-byte-compile: t" >> $@
141 echo ";;; no-update-autoloads: t" >> $@
142 echo ";;; End:" >> $@
143 echo ";;; loaddefs.el ends here" >> $@
144 autoloads: loaddefs.el doit
145 wd=$(lisp); $(setwins); \
146 echo Directories: $$wins; \
147 $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
149 subdirs.el:
150 $(MAKE) $(MFLAGS) update-subdirs
151 update-subdirs: doit
152 wd=$(lisp); $(setwins); \
153 for file in $$wins; do \
154 $(srcdir)/update-subdirs $$file; \
155 done;
157 updates: update-subdirs autoloads finder-data custom-deps
159 # Update the AUTHORS file.
161 update-authors:
162 $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir)
164 TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
165 ${ETAGS} $(lisptagsfiles1) $(lisptagsfiles2)
167 TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
168 ${ETAGS} -o TAGS-LISP $(lisptagsfiles1) $(lisptagsfiles2)
170 .SUFFIXES: .elc .el
172 .el.elc: subdirs.el
173 -$(emacs) -f batch-byte-compile $<
175 $(DONTCOMPILE:.el=.elc):
176 -rm -f $@
178 # Compile all Lisp files, except those from DONTCOMPILE. This
179 # compiles files unconditionally. All .elc files are made writable
180 # before compilation in case we checked out read-only (CVS option -r).
181 # Files MUST be compiled one by one. If we compile several files in a
182 # row we can't make sure that the compilation environment is clean.
183 # We also set the load-path of the Emacs used for compilation to the
184 # current directory and its subdirectories, to make sure require's and
185 # load's in the files being compiled find the right files.
187 compile-files: subdirs.el doit
188 find $(lisp) -name "*.elc" -print | xargs chmod +w; \
189 wd=$(lisp); $(setwins); \
190 elpat=`echo $$wins | tr ' ' '\012\012' | \
191 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
192 els=`echo $$elpat $(DONTCOMPILE) $(COMPILE_FIRST) | \
193 tr ' ' '\012\012' | sort | uniq -u`; \
194 for el in $(COMPILE_FIRST) $$els; do \
195 echo Compiling $$el; \
196 $(emacs) -f batch-byte-compile $$el || exit 1; \
197 done
199 # Backup compiled Lisp files in elc.tar.gz. If that file already
200 # exists, make a backup of it.
202 backup-compiled-files:
203 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
204 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
206 # Compile Lisp files, but save old compiled files first.
208 compile: backup-compiled-files compile-files
210 # Recompile all Lisp files which are newer than their .elc files.
211 # Note that this doesn't create .elc files. It only recompiles if an
212 # .elc is present.
214 recompile: doit
215 $(EMACS) $(EMACSOPT) -f batch-byte-recompile-directory $(lisp)
217 # Prepare a bootstrap in the lisp subdirectory. Build loaddefs.el,
218 # because it's not sure it's up-to-date, and if it's not, that might
219 # lead to errors during the bootstrap because something fails to
220 # autoload as expected. Remove compiled Lisp files so that
221 # bootstrap-emacs will be built from sources only.
223 bootstrap-clean:
224 if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi
225 -rm -f $(lisp)/*.elc $(lisp)/*/*.elc
227 # Generate/update files for the bootstrap process.
229 bootstrap: autoloads compile-files custom-deps
231 distclean:
232 -rm -f $(lisp)/Makefile
234 # Makefile ends here.