comparison lisp/Makefile.in @ 87649:107ccd98fa12

Merge from emacs--rel--22 Revision: emacs@sv.gnu.org/emacs--devo--0--patch-987
author Miles Bader <miles@gnu.org>
date Tue, 08 Jan 2008 20:46:54 +0000
parents d404da216302 73661ddc7ac7
children 606f2d163a64
comparison
equal deleted inserted replaced
87648:7ae99e295dfd 87649:107ccd98fa12
1 # Maintenance productions for the Lisp directory 1 # Maintenance productions for the Lisp directory
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,
3 # 2006, 2007 Free Software Foundation, Inc. 3 # 2006, 2007, 2008 Free Software Foundation, Inc.
4 4
5 # This file is part of GNU Emacs. 5 # This file is part of GNU Emacs.
6 6
7 # GNU Emacs is free software; you can redistribute it and/or modify 7 # GNU Emacs is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by 8 # it under the terms of the GNU General Public License as published by
91 91
92 doit: 92 doit:
93 93
94 $(lisp)/cus-load.el: 94 $(lisp)/cus-load.el:
95 touch $@ 95 touch $@
96 custom-deps: $(lisp)/subdirs.el $(lisp)/loaddefs.el $(lisp)/cus-load.el doit 96 # Note that custom-deps and finder-data depend on autoloads rather
97 # than on loaddefs.el, so that autoloads does not run in parallel with
98 # them under "make -j", because that could delete loaddefs.el from
99 # under their feet.
100 custom-deps: $(lisp)/subdirs.el autoloads $(lisp)/cus-load.el doit
97 wd=$(lisp); $(setwins_almost); \ 101 wd=$(lisp); $(setwins_almost); \
98 echo Directories: $$wins; \ 102 echo Directories: $$wins; \
99 $(emacs) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins 103 $(emacs) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins
100 104
101 finder-data: $(lisp)/subdirs.el $(lisp)/loaddefs.el doit 105 finder-data: $(lisp)/subdirs.el autoloads doit
102 wd=$(lisp); $(setwins_almost); \ 106 wd=$(lisp); $(setwins_almost); \
103 echo Directories: $$wins; \ 107 echo Directories: $$wins; \
104 $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins 108 $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins
105 109
106 $(lisp)/loaddefs.el: 110 $(lisp)/loaddefs.el:
246 250
247 mh-autoloads: $(lisp)/mh-e/mh-loaddefs.el 251 mh-autoloads: $(lisp)/mh-e/mh-loaddefs.el
248 $(lisp)/mh-e/mh-loaddefs.el: $(lisp)/subdirs.el $(MH_E_SRC) 252 $(lisp)/mh-e/mh-loaddefs.el: $(lisp)/subdirs.el $(MH_E_SRC)
249 echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > $@ 253 echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > $@
250 echo "" >> $@ 254 echo "" >> $@
251 echo ";; Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc." >> $@ 255 echo ";; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc." >> $@
252 echo ";; Author: Bill Wohler <wohler@newt.com>" >> $@ 256 echo ";; Author: Bill Wohler <wohler@newt.com>" >> $@
253 echo ";; Keywords: mail" >> $@ 257 echo ";; Keywords: mail" >> $@
254 echo ";;; Commentary:" >> $@ 258 echo ";;; Commentary:" >> $@
255 echo ";;; Change Log:" >> $@ 259 echo ";;; Change Log:" >> $@
256 echo ";;; Code:" >> $@ 260 echo ";;; Code:" >> $@