(define-derived-mode): Don't use combine-run-hooks.
[emacs.git] / lisp / Makefile.in
blob94a4c478cb6f1f0794a1442ccfdaa2cb00b072c1
2 # Maintenance productions for the Lisp directory
5 SHELL = /bin/sh
7 lisp=@srcdir@
8 VPATH=@srcdir@
9 srcdir=@srcdir@/..
11 # You can specify a different executable on the make command line,
12 # e.g. "make EMACS=../src/emacs ...".
14 EMACS = ../src/emacs
16 # Command line flags for Emacs. This must include --multibyte,
17 # otherwise some files will not compile.
19 EMACSOPT = -batch --no-site-file --multibyte
21 SOURCES = *.el COPYING Makefile
22 lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el
23 lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el
24 ETAGS = ../lib-src/etags
26 # Files which should not be compiled. If you change the name `DONTCOMPILE'
27 # to something different, you'll have to change make-dist as well.
29 # - emacs-lisp/cl-specs.el: only contains `def-edebug-spec's so there's
30 # no point compiling it, although it doesn't hurt.
32 DONTCOMPILE = \
33 $(lisp)/cus-load.el \
34 $(lisp)/cus-start.el \
35 $(lisp)/emacs-lisp/cl-specs.el \
36 $(lisp)/eshell/esh-maint.el \
37 $(lisp)/eshell/esh-groups.el \
38 $(lisp)/finder-inf.el \
39 $(lisp)/forms-d2.el \
40 $(lisp)/forms-pass.el \
41 $(lisp)/generic-x.el \
42 $(lisp)/international/latin-1.el \
43 $(lisp)/international/latin-2.el \
44 $(lisp)/international/latin-3.el \
45 $(lisp)/international/latin-4.el \
46 $(lisp)/international/latin-5.el \
47 $(lisp)/international/latin-8.el \
48 $(lisp)/international/latin-9.el \
49 $(lisp)/international/mule-conf.el \
50 $(lisp)/loaddefs.el \
51 $(lisp)/loadup.el \
52 $(lisp)/mail/blessmail.el \
53 $(lisp)/mail/sc.el \
54 $(lisp)/patcomp.el \
55 $(lisp)/paths.el \
56 $(lisp)/play/bruce.el \
57 $(lisp)/subdirs.el \
58 $(lisp)/term/internal.el \
59 $(lisp)/version.el
61 # Files to compile before others during a bootstrap. This is done
62 # to speed up the bootstrap process.
64 COMPILE_FIRST = \
65 $(lisp)/emacs-lisp/byte-opt.el \
66 $(lisp)/emacs-lisp/bytecomp.el \
67 $(lisp)/subr.el
69 # The actual Emacs command run in the targets below.
71 emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT)
73 # Common command to find subdirectories
75 setwins=subdirs=`find $$wd -type d -print`; \
76 for file in $$subdirs; do \
77 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \
78 *) wins="$$wins $$file" ;; \
79 esac; \
80 done
82 doit:
84 cus-load.el:
85 touch $@
86 custom-deps: cus-load.el doit
87 wd=$(lisp); $(setwins); \
88 echo Directories: $$wins; \
89 $(EMACS) $(EMACSOPT) -l cus-dep -f custom-make-dependencies $$wins
91 finder-inf.el:
92 echo "(provide 'finder-inf)" >> $@
93 finder-data: finder-inf.el doit
94 wd=$(lisp); $(setwins); \
95 echo Directories: $$wins; \
96 $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins
98 loaddefs.el:
99 echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@
100 echo ";;" >> $@; echo ";;; Code:" >> $@
101 echo "\f" >> $@
102 echo ";;; Local Variables:" >> $@
103 echo ";;; version-control: never" >> $@
104 echo ";;; no-byte-compile: t" >> $@
105 echo ";;; no-update-autoloads: t" >> $@
106 echo ";;; End:" >> $@
107 echo ";;; loaddefs.el ends here" >> $@
108 autoloads: loaddefs.el doit
109 wd=$(lisp); $(setwins); \
110 echo Directories: $$wins; \
111 $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
113 subdirs.el:
114 $(MAKE) $(MFLAGS) update-subdirs
115 update-subdirs: doit
116 wd=$(lisp); $(setwins); \
117 for file in $$wins; do \
118 $(srcdir)/update-subdirs $$file; \
119 done;
121 updates: update-subdirs autoloads finder-data custom-deps
123 # Update the AUTHORS file.
125 update-authors:
126 $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir)
128 TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
129 ${ETAGS} $(lisptagsfiles1) $(lisptagsfiles2)
131 TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
132 ${ETAGS} -o TAGS-LISP $(lisptagsfiles1) $(lisptagsfiles2)
134 .SUFFIXES: .elc .el
136 .el.elc: subdirs.el
137 -$(emacs) -f batch-byte-compile $<
139 $(DONTCOMPILE:.el=.elc):
140 -rm -f $@
142 # Compile all Lisp files, except those from DONTCOMPILE. This
143 # compiles files unconditionally. All .elc files are made writable
144 # before compilation in case we checked out read-only (CVS option -r).
145 # Files MUST be compiled one by one. If we compile several files in a
146 # row we can't make sure that the compilation environment is clean.
147 # We also set the load-path of the Emacs used for compilation to the
148 # current directory and its subdirectories, to make sure require's and
149 # load's in the files being compiled find the right files.
151 compile-files: subdirs.el doit
152 find $(lisp) -name "*.elc" -print | xargs chmod +w; \
153 wd=$(lisp); $(setwins); \
154 elpat=`echo $$wins | tr ' ' '\012\012' | \
155 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
156 els=`echo $$elpat $(DONTCOMPILE) $(COMPILE_FIRST) | \
157 tr ' ' '\012\012' | sort | uniq -u`; \
158 for el in $(COMPILE_FIRST) $$els; do \
159 echo Compiling $$el; \
160 $(emacs) -f batch-byte-compile $$el || exit 1; \
161 done
163 # Backup compiled Lisp files in elc.tar.gz. If that file already
164 # exists, make a backup of it.
166 backup-compiled-files:
167 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
168 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
170 # Compile Lisp files, but save old compiled files first.
172 compile: backup-compiled-files compile-files
174 # Recompile all Lisp files which are newer than their .elc files.
175 # Note that this doesn't create .elc files. It only recompiles if an
176 # .elc is present.
178 recompile: doit
179 $(EMACS) $(EMACSOPT) -f batch-byte-recompile-directory $(lisp)
181 # Prepare a bootstrap in the lisp subdirectory. Build loaddefs.el,
182 # because it's not sure it's up-to-date, and if it's not, that might
183 # lead to errors during the bootstrap because something fails to
184 # autoload as expected. Remove compiled Lisp files so that
185 # bootstrap-emacs will be built from sources only.
187 bootstrap-clean:
188 if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi
189 -rm -f $(lisp)/*.elc $(lisp)/*/*.elc
191 # Generate/update files for the bootstrap process.
193 bootstrap: autoloads compile-files custom-deps
195 distclean:
196 -rm -f $(lisp)/Makefile
198 # Makefile ends here.