Mercurial > emacs
annotate lisp/makefile.nt @ 48113:6a09e4b41337
(unuse_menu_items): New fun.
(menu_items_inuse): New var.
(syms_of_xmenu): Initialize it.
(init_menu_items): Use it to detect re-entrance.
(Fx_popup_menu, Fx_popup_dialog, set_frame_menubar): Reset it when done.
(Fx_popup_menu): Remove spurious XSETFRAME.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 01 Nov 2002 20:11:39 +0000 |
parents | db1c733efb7d |
children | 06b77df47802 |
rev | line source |
---|---|
9803 | 1 # Hacked up Nmake makefile for GNU Emacs |
2 # Geoff Voelker (voelker@cs.washington.edu) | |
3 # Copyright (c) 1994 Free Software Foundation, Inc. | |
4 # | |
5 # This file is part of GNU Emacs. | |
6 # | |
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 | |
9 # the Free Software Foundation; either version 2, or (at your option) | |
10 # any later version. | |
11 # | |
12 # GNU Emacs is distributed in the hope that it will be useful, | |
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 # GNU General Public License for more details. | |
16 # | |
17 # You should have received a copy of the GNU General Public License | |
15742 | 18 # along with GNU Emacs; see the file COPYING. If not, write to the |
19 # Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 # Boston, MA 02111-1307, USA. | |
9803 | 21 # |
22 | |
23 !include ..\nt\makefile.def | |
24 | |
25 all: | |
26 | |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
27 #lisp=$(MAKEDIR:\=/) |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
28 lisp=. |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
29 |
27622
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
30 # You can specify a different executable on the make command line, |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
31 # e.g. "make EMACS=../src/emacs ...". |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
32 |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
33 EMACS = ..\bin\emacs.exe |
27622
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
34 |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
35 # Command line flags for Emacs. This must include --multibyte, |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
36 # otherwise some files will not compile. |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
37 |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
38 EMACSOPT = -batch --no-init-file --no-site-file --multibyte |
27622
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
39 |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
40 lisptagsfiles1 = $(lisp)/*.el |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
41 lisptagsfiles2 = $(lisp)/*/*.el |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
42 ETAGS = ..\lib-src\$(BLD)\etags |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
43 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
44 # Files which should not be compiled. |
27622
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
45 # - emacs-lisp/cl-specs.el: only contains `def-edebug-spec's so there's |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
46 # no point compiling it, although it doesn't hurt. |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
47 |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
48 DONTCOMPILE = \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
49 $(lisp)/cus-load.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
50 $(lisp)/cus-start.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
51 $(lisp)/emacs-lisp/cl-specs.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
52 $(lisp)/eshell/esh-maint.el \ |
31618 | 53 $(lisp)/eshell/esh-groups.el \ |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
54 $(lisp)/finder-inf.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
55 $(lisp)/forms-d2.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
56 $(lisp)/forms-pass.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
57 $(lisp)/generic-x.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
58 $(lisp)/international/latin-1.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
59 $(lisp)/international/latin-2.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
60 $(lisp)/international/latin-3.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
61 $(lisp)/international/latin-4.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
62 $(lisp)/international/latin-5.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
63 $(lisp)/international/latin-8.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
64 $(lisp)/international/latin-9.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
65 $(lisp)/international/mule-conf.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
66 $(lisp)/loaddefs.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
67 $(lisp)/loadup.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
68 $(lisp)/mail/blessmail.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
69 $(lisp)/patcomp.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
70 $(lisp)/paths.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
71 $(lisp)/play/bruce.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
72 $(lisp)/subdirs.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
73 $(lisp)/term/internal.el \ |
38996
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
74 $(lisp)/term/AT386.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
75 $(lisp)/term/apollo.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
76 $(lisp)/term/bobcat.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
77 $(lisp)/term/iris-ansi.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
78 $(lisp)/term/keyswap.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
79 $(lisp)/term/linux.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
80 $(lisp)/term/lk201.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
81 $(lisp)/term/news.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
82 $(lisp)/term/vt102.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
83 $(lisp)/term/vt125.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
84 $(lisp)/term/vt200.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
85 $(lisp)/term/vt201.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
86 $(lisp)/term/vt220.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
87 $(lisp)/term/vt240.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
88 $(lisp)/term/vt300.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
89 $(lisp)/term/vt320.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
90 $(lisp)/term/vt400.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
91 $(lisp)/term/vt420.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
92 $(lisp)/term/wyse50.el \ |
75af792df610
(DONTCOMPILE): Sync list from makefile.w32-in.
Andrew Innes <andrewi@gnu.org>
parents:
38992
diff
changeset
|
93 $(lisp)/term/xterm.el \ |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
94 $(lisp)/version.el |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
95 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
96 # Files to compile before others during a bootstrap. This is done |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
97 # to speed up the bootstrap process. |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
98 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
99 COMPILE_FIRST = \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
100 $(lisp)/emacs-lisp/byte-opt.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
101 $(lisp)/emacs-lisp/bytecomp.el \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
102 $(lisp)/subr.el |
27622
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
103 |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
104 # The actual Emacs command run in the targets below. |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
105 |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
106 emacs = $(EMACS) $(EMACSOPT) |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
107 |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
108 # Common command to find subdirectories |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
109 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
110 # setwins=subdirs=`find $$wd -type d -print`; \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
111 # for file in $$subdirs; do \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
112 # case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
113 # *) wins="$$wins $$file" ;; \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
114 # esac; \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
115 # done |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
116 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
117 # Have to define the list of subdirs manually |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
118 WINS=\ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
119 calendar \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
120 emacs-lisp \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
121 emulation \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
122 eshell \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
123 gnus \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
124 international \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
125 language \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
126 mail \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
127 net \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
128 play \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
129 progmodes \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
130 term \ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
131 textmodes |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
132 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
133 doit: |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
134 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
135 cus-load.el: |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
136 touch $@ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
137 custom-deps: cus-load.el doit |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
138 @echo Directories: $(WINS) |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
139 $(emacs) -l cus-dep --eval "(setq find-file-hooks nil)" -f custom-make-dependencies $(lisp) $(WINS) |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
140 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
141 finder-inf.el: |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
142 echo (provide 'finder-inf)>> $@ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
143 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
144 finder-data: finder-inf.el doit |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
145 @echo Directories: $(WINS) |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
146 $(emacs) -l finder -f finder-compile-keywords-make-dist $(lisp) $(WINS) |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
147 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
148 loaddefs.el: |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
149 echo ;;; loaddefs.el --- automatically extracted autoloads> $@ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
150 echo ;;; Code:>> $@ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
151 echo >> $@ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
152 echo ;;; Local Variables:>> $@ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
153 echo ;;; version-control: never>> $@ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
154 echo ;;; no-byte-compile: t>> $@ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
155 echo ;;; no-update-autoloads: t>> $@ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
156 echo ;;; End:>> $@ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
157 echo ;;; loaddefs.el ends here>> $@ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
158 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
159 autoloads: loaddefs.el doit |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
160 @echo Directories: $(WINS) |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
161 $(emacs) -l autoload --eval "(setq find-file-hooks nil generated-autoload-file \"$(lisp)/loaddefs.el\")" -f batch-update-autoloads $(lisp) $(WINS) |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
162 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
163 subdirs.el: |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
164 $(MAKE) $(MFLAGS) -f makefile.nt update-subdirs |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
165 update-subdirs: doit |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
166 @set QWINS= |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
167 @for %d in ($(WINS)) do if not (%d)==(term) set QWINS=%QWINS% "%d" |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
168 echo ;; In load-path, after this directory should come> subdirs.el |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
169 echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
170 echo (normal-top-level-add-to-load-path '(%QWINS%))>> subdirs.el |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
171 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
172 updates: update-subdirs autoloads finder-data custom-deps |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
173 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
174 TAGS: $(lisptagsfiles1) $(lisptagsfiles2) |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
175 $(ETAGS) $(lisptagsfiles1) $(lisptagsfiles2) |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
176 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
177 TAGS-LISP: $(lispsource)$(lisptagsfiles1) $(lispsource)$(lisptagsfiles2) |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
178 $(ETAGS) -o TAGS-LISP $(lispsource)$(lisptagsfiles1) $(lispsource)$(lisptagsfiles2) |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
179 |
33904
c96ec3fcc61b
(.SUFFIXES): Add .SUFFIXES.
Andrew Innes <andrewi@gnu.org>
parents:
31677
diff
changeset
|
180 .SUFFIXES: .elc .el |
c96ec3fcc61b
(.SUFFIXES): Add .SUFFIXES.
Andrew Innes <andrewi@gnu.org>
parents:
31677
diff
changeset
|
181 |
27622
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
182 .el.elc: |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
183 -$(emacs) -f batch-byte-compile $< |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
184 |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
185 $(DONTCOMPILE:.el=.elc): |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
186 -$(DEL) $@ |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
187 |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
188 # Compile all Lisp files, except those from DONTCOMPILE. This |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
189 # compiles files unconditionally. All .elc files are made writable |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
190 # before compilation in case we checked out read-only (CVS option -r). |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
191 # Files MUST be compiled one by one. If we compile several files in a |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
192 # row we can't make sure that the compilation environment is clean. |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
193 # We also set the load-path of the Emacs used for compilation to the |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
194 # current directory and its subdirectories, to make sure require's and |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
195 # load's in the files being compiled find the right files. |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
196 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
197 compile-files: subdirs.el doit |
31677
70dd1b38f43e
(compile-files): No need to make .elc files
Andrew Innes <andrewi@gnu.org>
parents:
31618
diff
changeset
|
198 # -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
199 for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
200 for %f in ($(lisp) $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
201 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
202 # Backup compiled Lisp files in elc.tar.gz. If that file already |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
203 # exists, make a backup of it. |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
204 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
205 backup-compiled-files: |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
206 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
207 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
208 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
209 # Compile Lisp files, but save old compiled files first. |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
210 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
211 compile: backup-compiled-files compile-files |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
212 |
27622
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
213 # Recompile all Lisp files which are newer than their .elc files. |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
214 # Note that this doesn't create .elc files. It only recompiles if an |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
215 # .elc is present. |
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
216 |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
217 recompile: doit |
27622
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
218 $(emacs) -f batch-byte-recompile-directory . |
21596
de7ecc11ba03
(install): Copy elisp files that are not compiled.
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
219 |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
220 # Prepare a bootstrap in the lisp subdirectory. Build loaddefs.el, |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
221 # because it's not sure it's up-to-date, and if it's not, that might |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
222 # lead to errors during the bootstrap because something fails to |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
223 # autoload as expected. Remove compiled Lisp files so that |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
224 # bootstrap-emacs will be built from sources only. |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
225 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
226 bootstrap-clean: |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
227 if exist $(EMACS) $(MAKE) $(MFLAGS) -f makefile.nt autoloads |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
228 -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @$(DEL) %g |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
229 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
230 # Generate/update files for the bootstrap process. |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
231 |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
232 bootstrap: autoloads compile-files custom-deps |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
233 |
9803 | 234 # |
235 # Assuming INSTALL_DIR is defined, copy the elisp files to it | |
24320
5df541fa3e2b
(INSTALL): Copy the handful of uncompiled lisp files
Geoff Voelker <voelker@cs.washington.edu>
parents:
23833
diff
changeset
|
236 # Windows 95 makes this harder than it should be. |
9803 | 237 # |
27622
e024ab46002c
(install): Synchronize rules for compiling with Unix version.
Andrew Innes <andrewi@gnu.org>
parents:
24320
diff
changeset
|
238 install: |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
239 - mkdir $(INSTALL_DIR)\lisp |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
240 - $(DEL) .\same-dir.tst |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
241 - $(DEL) $(INSTALL_DIR)\lisp\same-dir.tst |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
242 echo SameDirTest > $(INSTALL_DIR)\lisp\same-dir.tst |
21596
de7ecc11ba03
(install): Copy elisp files that are not compiled.
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
243 !ifdef COPY_LISP_SOURCE |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
244 if not exist .\same-dir.tst $(CP_DIR) . $(INSTALL_DIR)\lisp |
21596
de7ecc11ba03
(install): Copy elisp files that are not compiled.
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
245 !else |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
246 if not exist .\same-dir.tst $(CP_DIR) *.elc $(INSTALL_DIR)\lisp |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
247 if not exist .\same-dir.tst $(CP) cus-load.el $(INSTALL_DIR)\lisp |
38992
ef3687c22e20
(install): Copy more *.el files.
Eli Zaretskii <eliz@gnu.org>
parents:
38843
diff
changeset
|
248 if not exist .\same-dir.tst $(CP) cus-start.el $(INSTALL_DIR)\lisp |
ef3687c22e20
(install): Copy more *.el files.
Eli Zaretskii <eliz@gnu.org>
parents:
38843
diff
changeset
|
249 if not exist .\same-dir.tst $(CP) emacs-lisp\cl-specs.el $(INSTALL_DIR)\lisp\emacs-lisp |
ef3687c22e20
(install): Copy more *.el files.
Eli Zaretskii <eliz@gnu.org>
parents:
38843
diff
changeset
|
250 if not exist .\same-dir.tst $(CP) eshell\esh-maint.el $(INSTALL_DIR)\lisp\eshell |
ef3687c22e20
(install): Copy more *.el files.
Eli Zaretskii <eliz@gnu.org>
parents:
38843
diff
changeset
|
251 if not exist .\same-dir.tst $(CP) eshell\esh-groups.el $(INSTALL_DIR)\lisp\eshell |
ef3687c22e20
(install): Copy more *.el files.
Eli Zaretskii <eliz@gnu.org>
parents:
38843
diff
changeset
|
252 if not exist .\same-dir.tst $(CP) finder-inf.el $(INSTALL_DIR)\lisp |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
253 if not exist .\same-dir.tst $(CP) forms*.el $(INSTALL_DIR)\lisp |
38992
ef3687c22e20
(install): Copy more *.el files.
Eli Zaretskii <eliz@gnu.org>
parents:
38843
diff
changeset
|
254 if not exist .\same-dir.tst $(CP) generic-x.el $(INSTALL_DIR)\lisp |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
255 if not exist .\same-dir.tst $(CP) patcomp.el $(INSTALL_DIR)\lisp |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
256 if not exist .\same-dir.tst $(CP) subdirs.el $(INSTALL_DIR)\lisp |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
257 if not exist .\same-dir.tst $(CP) version.el $(INSTALL_DIR)\lisp |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
258 if not exist .\same-dir.tst $(CP) mail\blessmail.el $(INSTALL_DIR)\lisp\mail |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
259 if not exist .\same-dir.tst $(CP) play\bruce.el $(INSTALL_DIR)\lisp\play |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
260 if not exist .\same-dir.tst $(CP) international\latin-*.el $(INSTALL_DIR)\lisp\international |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
261 if not exist .\same-dir.tst $(CP) international\mule-conf.el $(INSTALL_DIR)\lisp\international |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
262 - $(DEL) $(INSTALL_DIR)\lisp\same-dir.tst |
23833
088714863cc9
(install) [COPY_LISP_SOURCE]: Fix end of conditional.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21655
diff
changeset
|
263 !endif |
21655
cfb05eddeb55
(interdontcompile): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21596
diff
changeset
|
264 |
9803 | 265 # |
266 # Maintenance | |
267 # | |
30075
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
268 clean: |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
269 - $(DEL) *~ term\*~ |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
270 - $(DEL) *.orig *.rej *.crlf |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
271 - $(DEL) emacs-lisp\*.orig emacs-lisp\*.rej emacs-lisp\*.crlf |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
272 - $(DEL) emulation\*.orig emulation\*.rej emulation\*.crlf |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
273 - $(DEL) gnus\*.orig gnus\*.rej gnus\*.crlf |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
274 - $(DEL) international\*.orig international\*.rej international\*.crlf |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
275 - $(DEL) language\*.orig language\*.rej language\*.crlf |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
276 - $(DEL) mail\*.orig mail\*.rej mail\*.crlf |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
277 - $(DEL) play\*.orig play\*.rej play\*.crlf |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
278 - $(DEL) progmodes\*.orig progmodes\*.rej progmodes\*.crlf |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
279 - $(DEL) term\*.orig term\*.rej term\*.crlf |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
280 - $(DEL) textmodes\*.orig textmodes\*.rej textmodes\*.crlf |
39e2dae95929
Add support for `bootstrap' and related targets.
Andrew Innes <andrewi@gnu.org>
parents:
27622
diff
changeset
|
281 - $(DEL_TREE) deleted |