comparison lisp/Makefile.in @ 91327:606f2d163a64

Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-312
author Miles Bader <miles@gnu.org>
date Wed, 09 Jan 2008 01:21:15 +0000
parents 53108e6cea98 107ccd98fa12
children ff93c8b2a389
comparison
equal deleted inserted replaced
91326:b1a63d7fa09c 91327:606f2d163a64
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
93 93
94 doit: 94 doit:
95 95
96 $(lisp)/cus-load.el: 96 $(lisp)/cus-load.el:
97 touch $@ 97 touch $@
98 custom-deps: $(lisp)/subdirs.el $(lisp)/loaddefs.el $(lisp)/cus-load.el doit 98 # Note that custom-deps and finder-data depend on autoloads rather
99 # than on loaddefs.el, so that autoloads does not run in parallel with
100 # them under "make -j", because that could delete loaddefs.el from
101 # under their feet.
102 custom-deps: $(lisp)/subdirs.el autoloads $(lisp)/cus-load.el doit
99 wd=$(lisp); $(setwins_almost); \ 103 wd=$(lisp); $(setwins_almost); \
100 echo Directories: $$wins; \ 104 echo Directories: $$wins; \
101 LC_ALL=C $(emacs) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins 105 LC_ALL=C $(emacs) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins
102 106
103 finder-data: $(lisp)/subdirs.el $(lisp)/loaddefs.el doit 107 finder-data: $(lisp)/subdirs.el autoloads doit
104 wd=$(lisp); $(setwins_almost); \ 108 wd=$(lisp); $(setwins_almost); \
105 echo Directories: $$wins; \ 109 echo Directories: $$wins; \
106 LC_ALL=C $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins 110 LC_ALL=C $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins
107 111
108 $(lisp)/loaddefs.el: 112 $(lisp)/loaddefs.el:
248 252
249 mh-autoloads: $(lisp)/mh-e/mh-loaddefs.el 253 mh-autoloads: $(lisp)/mh-e/mh-loaddefs.el
250 $(lisp)/mh-e/mh-loaddefs.el: $(lisp)/subdirs.el $(MH_E_SRC) 254 $(lisp)/mh-e/mh-loaddefs.el: $(lisp)/subdirs.el $(MH_E_SRC)
251 echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > $@ 255 echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > $@
252 echo "" >> $@ 256 echo "" >> $@
253 echo ";; Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc." >> $@ 257 echo ";; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc." >> $@
254 echo ";; Author: Bill Wohler <wohler@newt.com>" >> $@ 258 echo ";; Author: Bill Wohler <wohler@newt.com>" >> $@
255 echo ";; Keywords: mail" >> $@ 259 echo ";; Keywords: mail" >> $@
256 echo ";;; Commentary:" >> $@ 260 echo ";;; Commentary:" >> $@
257 echo ";;; Change Log:" >> $@ 261 echo ";;; Change Log:" >> $@
258 echo ";;; Code:" >> $@ 262 echo ";;; Code:" >> $@