Mercurial > emacs
annotate lib-src/makefile.w32-in @ 91113:1b739acb7b7c
(struct frame): New member font_data_list.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 19 Nov 2007 05:15:30 +0000 |
parents | 880960b70474 |
children | 53108e6cea98 |
rev | line source |
---|---|
55092
9077e3f7cd49
Add "-*- makefile -*-" mode tag.
Juanma Barranquero <lekktu@gmail.com>
parents:
54219
diff
changeset
|
1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API. |
64769
6358e3c6075c
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64655
diff
changeset
|
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, |
75348 | 3 # 2005, 2006, 2007 Free Software Foundation, Inc. |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
4 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
5 # This file is part of GNU Emacs. |
47753
6859b96dbdd7
(lisp): Load devanagari.el, not .elc.
Juanma Barranquero <lekktu@gmail.com>
parents:
47613
diff
changeset
|
6 # |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
7 # GNU Emacs is free software; you can redistribute it and/or modify |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
8 # it under the terms of the GNU General Public License as published by |
78257
1f2482de3237
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
78176
diff
changeset
|
9 # the Free Software Foundation; either version 3, or (at your option) |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
10 # any later version. |
47753
6859b96dbdd7
(lisp): Load devanagari.el, not .elc.
Juanma Barranquero <lekktu@gmail.com>
parents:
47613
diff
changeset
|
11 # |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
12 # GNU Emacs is distributed in the hope that it will be useful, |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
15 # GNU General Public License for more details. |
47753
6859b96dbdd7
(lisp): Load devanagari.el, not .elc.
Juanma Barranquero <lekktu@gmail.com>
parents:
47613
diff
changeset
|
16 # |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
17 # You should have received a copy of the GNU General Public License |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
18 # along with GNU Emacs; see the file COPYING. If not, write to the |
64083 | 19 # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 # Boston, MA 02110-1301, USA. | |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
21 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
22 |
73561
cdd279778a20
(ALL): Add emacsclient.
Juanma Barranquero <lekktu@gmail.com>
parents:
73311
diff
changeset
|
23 ALL = make-docfile hexl ctags etags movemail ebrowse sorted-doc digest-doc emacsclient |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
24 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
25 .PHONY: $(ALL) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
26 |
83740 | 27 VERSION = 23.0.50 |
74186
4a8f84b25be2
(VERSION): New macro.
Juanma Barranquero <lekktu@gmail.com>
parents:
73974
diff
changeset
|
28 |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
29 LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \ |
33831 | 30 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \ |
73974
5c5306b4cb49
(emacsclient): Depend also on emacsclientw.exe.
Juanma Barranquero <lekktu@gmail.com>
parents:
73954
diff
changeset
|
31 -I../src |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
32 |
74186
4a8f84b25be2
(VERSION): New macro.
Juanma Barranquero <lekktu@gmail.com>
parents:
73974
diff
changeset
|
33 LIBS = $(BASE_LIBS) $(ADVAPI32) |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
34 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
35 $(BLD)/make-docfile.exe: $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
36 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O) $(LIBS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
37 $(BLD)/hexl.exe: $(BLD)/hexl.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
38 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/hexl.$(O) $(LIBS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
39 $(BLD)/fakemail.exe: $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
40 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) $(LIBS) |
71197
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
41 $(BLD)/sorted-doc.exe: $(BLD)/sorted-doc.$(O) |
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
42 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/sorted-doc.$(O) $(LIBS) |
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
43 $(BLD)/digest-doc.exe: $(BLD)/digest-doc.$(O) |
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
44 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/digest-doc.$(O) $(LIBS) |
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
45 $(BLD)/test-distrib.exe: $(BLD)/test-distrib.$(O) |
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
46 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/test-distrib.$(O) $(LIBS) |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
47 |
74802
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
48 make-docfile: stamp_BLD $(BLD)/make-docfile.exe |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
49 ctags: stamp_BLD $(BLD)/ctags.exe |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
50 etags: stamp_BLD $(BLD)/etags.exe |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
51 ebrowse: stamp_BLD $(BLD)/ebrowse.exe |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
52 hexl: stamp_BLD $(BLD)/hexl.exe |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
53 movemail: stamp_BLD $(BLD)/movemail.exe |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
54 fakemail: stamp_BLD $(BLD)/fakemail.exe |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
55 sorted-doc: stamp_BLD $(BLD)/sorted-doc.exe |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
56 digest-doc: stamp_BLD $(BLD)/digest-doc.exe |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
57 emacsclient: stamp_BLD $(BLD)/emacsclient.exe $(BLD)/emacsclientw.exe |
71197
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
58 |
74802
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
59 test-distrib: stamp_BLD $(BLD)/test-distrib.exe |
71197
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
60 "$(BLD)/test-distrib.exe" "$(SRC)/testfile" |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
61 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
62 GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
63 GETOPTDEPS = $(GETOPTOBJS) getopt.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
64 MOVEMAILOBJS = $(BLD)/movemail.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
65 $(BLD)/pop.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
66 $(BLD)/ntlib.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
67 $(GETOPTOBJS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
68 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
69 $(BLD)/movemail.exe: $(MOVEMAILOBJS) getopt.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
70 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
71 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(MOVEMAILOBJS) $(WSOCK32) $(LIBS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
72 |
74186
4a8f84b25be2
(VERSION): New macro.
Juanma Barranquero <lekktu@gmail.com>
parents:
73974
diff
changeset
|
73 ECLIENT_CFLAGS = -DHAVE_GETCWD -DHAVE_STRERROR -DVERSION="\"$(VERSION)\"" |
73561
cdd279778a20
(ALL): Add emacsclient.
Juanma Barranquero <lekktu@gmail.com>
parents:
73311
diff
changeset
|
74 ECLIENTOBJS = $(BLD)/emacsclient.$(O) \ |
cdd279778a20
(ALL): Add emacsclient.
Juanma Barranquero <lekktu@gmail.com>
parents:
73311
diff
changeset
|
75 $(BLD)/getopt.$(O) \ |
cdd279778a20
(ALL): Add emacsclient.
Juanma Barranquero <lekktu@gmail.com>
parents:
73311
diff
changeset
|
76 $(BLD)/getopt1.$(O) \ |
cdd279778a20
(ALL): Add emacsclient.
Juanma Barranquero <lekktu@gmail.com>
parents:
73311
diff
changeset
|
77 $(BLD)/ntlib.$(O) |
74252
efa83b1588ba
(TRES): New macro (copied from nt/makefile.w32-in).
Juanma Barranquero <lekktu@gmail.com>
parents:
74216
diff
changeset
|
78 TRES = ../nt/$(BLD)/emacs.res |
efa83b1588ba
(TRES): New macro (copied from nt/makefile.w32-in).
Juanma Barranquero <lekktu@gmail.com>
parents:
74216
diff
changeset
|
79 |
efa83b1588ba
(TRES): New macro (copied from nt/makefile.w32-in).
Juanma Barranquero <lekktu@gmail.com>
parents:
74216
diff
changeset
|
80 $(TRES): ../nt/emacs.rc |
efa83b1588ba
(TRES): New macro (copied from nt/makefile.w32-in).
Juanma Barranquero <lekktu@gmail.com>
parents:
74216
diff
changeset
|
81 $(RC) $(RC_OUT)../nt/$(BLD)/emacs.res $(ALL_DEPS) |
73561
cdd279778a20
(ALL): Add emacsclient.
Juanma Barranquero <lekktu@gmail.com>
parents:
73311
diff
changeset
|
82 |
cdd279778a20
(ALL): Add emacsclient.
Juanma Barranquero <lekktu@gmail.com>
parents:
73311
diff
changeset
|
83 $(BLD)/emacsclient.exe: $(ECLIENTOBJS) |
cdd279778a20
(ALL): Add emacsclient.
Juanma Barranquero <lekktu@gmail.com>
parents:
73311
diff
changeset
|
84 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib |
78903
e7e6abb88c1c
(emacsclient, emacsclientw): Link to COMCTL32.
Jason Rumney <jasonr@gnu.org>
parents:
78257
diff
changeset
|
85 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $(COMCTL32) $(LIBS) |
73561
cdd279778a20
(ALL): Add emacsclient.
Juanma Barranquero <lekktu@gmail.com>
parents:
73311
diff
changeset
|
86 |
74252
efa83b1588ba
(TRES): New macro (copied from nt/makefile.w32-in).
Juanma Barranquero <lekktu@gmail.com>
parents:
74216
diff
changeset
|
87 $(BLD)/emacsclientw.exe: $(ECLIENTOBJS) $(TRES) |
73974
5c5306b4cb49
(emacsclient): Depend also on emacsclientw.exe.
Juanma Barranquero <lekktu@gmail.com>
parents:
73954
diff
changeset
|
88 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib |
78903
e7e6abb88c1c
(emacsclient, emacsclientw): Link to COMCTL32.
Jason Rumney <jasonr@gnu.org>
parents:
78257
diff
changeset
|
89 $(LINK) $(LINK_OUT)$@ $(TRES) -mwindows $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $(COMCTL32) $(LIBS) |
73974
5c5306b4cb49
(emacsclient): Depend also on emacsclientw.exe.
Juanma Barranquero <lekktu@gmail.com>
parents:
73954
diff
changeset
|
90 |
74216
567ef840b95b
($(BLD)/emacsclient.$(O)): Depend on makefile.w32-in.
Eli Zaretskii <eliz@gnu.org>
parents:
74186
diff
changeset
|
91 # emacsclient.$(O) depends on makefile.w32-in because makefile.w32-in |
567ef840b95b
($(BLD)/emacsclient.$(O)): Depend on makefile.w32-in.
Eli Zaretskii <eliz@gnu.org>
parents:
74186
diff
changeset
|
92 # can be edited to define VERSION string, which is part of ECLIENT_CFLAGS. |
567ef840b95b
($(BLD)/emacsclient.$(O)): Depend on makefile.w32-in.
Eli Zaretskii <eliz@gnu.org>
parents:
74186
diff
changeset
|
93 $(BLD)/emacsclient.$(O): emacsclient.c makefile.w32-in |
73954
67f133ca8114
($(BLD)/emacsclient.$(O)): Use CFLAGS.
Jason Rumney <jasonr@gnu.org>
parents:
73672
diff
changeset
|
94 $(CC) $(CFLAGS) $(ECLIENT_CFLAGS) $(CC_OUT)$@ emacsclient.c |
73561
cdd279778a20
(ALL): Add emacsclient.
Juanma Barranquero <lekktu@gmail.com>
parents:
73311
diff
changeset
|
95 |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
96 ETAGSOBJ = $(BLD)/etags.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
97 $(BLD)/getopt.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
98 $(BLD)/getopt1.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
99 $(BLD)/ntlib.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
100 $(BLD)/regex.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
101 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
102 $(BLD)/etags.exe: $(ETAGSOBJ) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
103 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
104 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
105 |
33831 | 106 EBROWSEOBJ = $(BLD)/ebrowse.$(O) \ |
73974
5c5306b4cb49
(emacsclient): Depend also on emacsclientw.exe.
Juanma Barranquero <lekktu@gmail.com>
parents:
73954
diff
changeset
|
107 $(BLD)/getopt.$(O) \ |
5c5306b4cb49
(emacsclient): Depend also on emacsclientw.exe.
Juanma Barranquero <lekktu@gmail.com>
parents:
73954
diff
changeset
|
108 $(BLD)/getopt1.$(O) \ |
5c5306b4cb49
(emacsclient): Depend also on emacsclientw.exe.
Juanma Barranquero <lekktu@gmail.com>
parents:
73954
diff
changeset
|
109 $(BLD)/ntlib.$(O) |
33831 | 110 |
111 $(BLD)/ebrowse.exe: $(EBROWSEOBJ) | |
34031
fb2af42432a8
($(BLD)/ebrowse.exe): Use tabs not spaces.
Andrew Innes <andrewi@gnu.org>
parents:
33831
diff
changeset
|
112 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(EBROWSEOBJ) $(LIBS) |
33831 | 113 |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
114 $(BLD)/regex.$(O): ../src/regex.c ../src/regex.h ../src/config.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
115 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
116 ../src/regex.c $(CC_OUT)$@ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
117 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
118 ETAGS_CFLAGS = -DHAVE_GETCWD |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
119 $(BLD)/etags.$(O): etags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
120 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
121 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
122 CTAGSOBJ = $(BLD)/ctags.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
123 $(BLD)/getopt.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
124 $(BLD)/getopt1.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
125 $(BLD)/ntlib.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
126 $(BLD)/regex.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
127 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
128 $(BLD)/ctags.exe: $(CTAGSOBJ) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
129 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
130 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
131 ctags.c: etags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
132 - $(DEL) ctags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
133 $(CP) etags.c ctags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
134 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
135 CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
136 $(BLD)/ctags.$(O): ctags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
137 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
138 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
139 # |
58067
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
140 # From ..\src\Makefile.in |
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
141 # It doesn't matter if the real name is *.obj for the files in this list, |
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
142 # make-docfile blindly replaces .o with .c anyway. Keep .o in this list |
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
143 # as it is required by code in doc.c. |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
144 # |
91085 | 145 obj = dosfns.o msdos.o \ |
91060
cd41c7f74f39
(obj): Sync with src/Makefile.in
Jason Rumney <jasonr@gnu.org>
parents:
91041
diff
changeset
|
146 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o \ |
cd41c7f74f39
(obj): Sync with src/Makefile.in
Jason Rumney <jasonr@gnu.org>
parents:
91041
diff
changeset
|
147 mac.o macterm.o macfns.o macmenu.o macselect.o fontset.o \ |
58067
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
148 w32.o w32bdf.o w32console.o w32fns.o w32heap.o w32inevt.o \ |
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
149 w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o \ |
91060
cd41c7f74f39
(obj): Sync with src/Makefile.in
Jason Rumney <jasonr@gnu.org>
parents:
91041
diff
changeset
|
150 font.o w32font.o \ |
58067
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
151 dispnew.o frame.o scroll.o xdisp.o window.o \ |
91060
cd41c7f74f39
(obj): Sync with src/Makefile.in
Jason Rumney <jasonr@gnu.org>
parents:
91041
diff
changeset
|
152 charset.o coding.o category.o ccl.o character.o chartab.o \ |
cd41c7f74f39
(obj): Sync with src/Makefile.in
Jason Rumney <jasonr@gnu.org>
parents:
91041
diff
changeset
|
153 cm.o term.o terminal.o xfaces.o \ |
58067
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
154 emacs.o keyboard.o macros.o keymap.o sysdep.o \ |
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
155 buffer.o filelock.o insdel.o marker.o \ |
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
156 minibuf.o fileio.o dired.o filemode.o \ |
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
157 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \ |
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
158 alloc.o data.o doc.o editfns.o callint.o \ |
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
159 eval.o floatfns.o fns.o print.o lread.o \ |
85714
7b07f791ed62
(obj): Remove abbrev.o.
Juanma Barranquero <lekktu@gmail.com>
parents:
85114
diff
changeset
|
160 syntax.o bytecode.o \ |
58067
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
161 process.o callproc.o \ |
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
162 region-cache.o sound.o atimer.o \ |
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
163 doprnt.o strftime.o intervals.o textprop.o composite.o md5.o |
7c1d0d70a294
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv <jan.h.d@swipnet.se>
parents:
56026
diff
changeset
|
164 |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
165 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
166 # These are the lisp files that are loaded up in loadup.el |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
167 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
168 lispsource = ../lisp/ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
169 |
91063
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
170 MOUSE_SUPPORT = \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
171 $(lispsource)select.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
172 $(lispsource)scroll-bar.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
173 $(lispsource)mouse.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
174 $(lispsource)tooltip.elc |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
175 WINNT_SUPPORT = \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
176 $(lispsource)ls-lisp.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
177 $(lispsource)disp-table.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
178 $(lispsource)w32-fns.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
179 $(lispsource)dos-w32.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
180 $(lispsource)w32-vars.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
181 $(lispsource)term/w32-win.elc |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
182 |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
183 # lisp files that are loaded up on other platforms |
91063
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
184 MSDOS_SUPPORT = \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
185 $(lispsource)dos-fns.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
186 $(lispsource)dos-vars.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
187 $(lispsource)international/ccl.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
188 $(lispsource)international/codepage.elc |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
189 VMS_SUPPORT = \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
190 $(lispsource)vmsproc.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
191 $(lispsource)vms-patch.elc |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
192 TOOLTIP_SUPPORT = $(lispsource)tooltip.elc |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
193 WINDOW_SUPPORT = \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
194 $(lispsource)fringe.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
195 $(lispsource)image.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
196 $(lispsource)international/fontset.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
197 $(lispsource)dnd.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
198 $(lispsource)tool-bar.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
199 $(lispsource)mwheel.elc |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
200 |
55452
fdbb1911034d
(lisp1, lisp2): Split lisp to avoid long command-lines.
Jason Rumney <jasonr@gnu.org>
parents:
55092
diff
changeset
|
201 lisp1= \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
202 $(lispsource)abbrev.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
203 $(lispsource)buff-menu.elc \ |
43523
c7eaaa9c5bf5
Add missing backslash.
Juanma Barranquero <lekktu@gmail.com>
parents:
43515
diff
changeset
|
204 $(lispsource)button.elc \ |
51353
769c2d7bcbc0
(lisp): Fix references to byte-run.el, float-sup.el and map-ynp.el, which are
Juanma Barranquero <lekktu@gmail.com>
parents:
49716
diff
changeset
|
205 $(lispsource)emacs-lisp/byte-run.elc \ |
91063
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
206 ${lispsource}composite.elc \ |
67922
3de387bf632e
(MOUSE_SUPPORT): Add tooltip.elc.
Eli Zaretskii <eliz@gnu.org>
parents:
65447
diff
changeset
|
207 $(lispsource)cus-face.elc \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
208 $(lispsource)cus-start.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
209 $(lispsource)custom.elc \ |
44216
3c0c4e024b4f
Move backquote.elc into emacs-lisp.
Jason Rumney <jasonr@gnu.org>
parents:
43523
diff
changeset
|
210 $(lispsource)emacs-lisp/backquote.elc \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
211 $(lispsource)emacs-lisp/lisp-mode.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
212 $(lispsource)emacs-lisp/lisp.elc \ |
91063
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
213 $(lispsource)env.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
214 $(lispsource)faces.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
215 $(lispsource)files.elc \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
216 $(lispsource)format.elc \ |
67922
3de387bf632e
(MOUSE_SUPPORT): Add tooltip.elc.
Eli Zaretskii <eliz@gnu.org>
parents:
65447
diff
changeset
|
217 $(lispsource)facemenu.elc \ |
3de387bf632e
(MOUSE_SUPPORT): Add tooltip.elc.
Eli Zaretskii <eliz@gnu.org>
parents:
65447
diff
changeset
|
218 $(MOUSE_SUPPORT) \ |
3de387bf632e
(MOUSE_SUPPORT): Add tooltip.elc.
Eli Zaretskii <eliz@gnu.org>
parents:
65447
diff
changeset
|
219 $(lispsource)emacs-lisp/float-sup.elc \ |
51353
769c2d7bcbc0
(lisp): Fix references to byte-run.el, float-sup.el and map-ynp.el, which are
Juanma Barranquero <lekktu@gmail.com>
parents:
49716
diff
changeset
|
220 $(lispsource)frame.elc \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
221 $(lispsource)help.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
222 $(lispsource)indent.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
223 $(lispsource)isearch.elc \ |
67922
3de387bf632e
(MOUSE_SUPPORT): Add tooltip.elc.
Eli Zaretskii <eliz@gnu.org>
parents:
65447
diff
changeset
|
224 $(lispsource)rfn-eshadow.elc \ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
225 $(lispsource)loadup.el \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
226 $(lispsource)loaddefs.el \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
227 $(lispsource)bindings.elc \ |
51353
769c2d7bcbc0
(lisp): Fix references to byte-run.el, float-sup.el and map-ynp.el, which are
Juanma Barranquero <lekktu@gmail.com>
parents:
49716
diff
changeset
|
228 $(lispsource)emacs-lisp/map-ynp.elc \ |
91063
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
229 $(lispsource)menu-bar.elc \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
230 $(lispsource)international/mule.elc \ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
231 $(lispsource)international/mule-conf.el \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
232 $(lispsource)international/mule-cmds.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
233 $(lispsource)international/characters.elc \ |
91063
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
234 $(lispsource)international/charprop.el \ |
55452
fdbb1911034d
(lisp1, lisp2): Split lisp to avoid long command-lines.
Jason Rumney <jasonr@gnu.org>
parents:
55092
diff
changeset
|
235 $(lispsource)case-table.elc |
fdbb1911034d
(lisp1, lisp2): Split lisp to avoid long command-lines.
Jason Rumney <jasonr@gnu.org>
parents:
55092
diff
changeset
|
236 |
fdbb1911034d
(lisp1, lisp2): Split lisp to avoid long command-lines.
Jason Rumney <jasonr@gnu.org>
parents:
55092
diff
changeset
|
237 lisp2 = \ |
91063
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
238 $(lispsource)language/chinese.el \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
239 $(lispsource)language/cyrillic.el \ |
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
240 $(lispsource)language/indian.el \ |
47753
6859b96dbdd7
(lisp): Load devanagari.el, not .elc.
Juanma Barranquero <lekktu@gmail.com>
parents:
47613
diff
changeset
|
241 $(lispsource)language/devanagari.el \ |
67922
3de387bf632e
(MOUSE_SUPPORT): Add tooltip.elc.
Eli Zaretskii <eliz@gnu.org>
parents:
65447
diff
changeset
|
242 $(lispsource)language/kannada.el \ |
49716
14e851c84328
(lisp): Add malayalam.el and tamil.el.
Juanma Barranquero <lekktu@gmail.com>
parents:
48894
diff
changeset
|
243 $(lispsource)language/malayalam.el \ |
14e851c84328
(lisp): Add malayalam.el and tamil.el.
Juanma Barranquero <lekktu@gmail.com>
parents:
48894
diff
changeset
|
244 $(lispsource)language/tamil.el \ |
41804 | 245 $(lispsource)language/english.el \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
246 $(lispsource)language/ethiopic.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
247 $(lispsource)language/european.elc \ |
41804 | 248 $(lispsource)language/czech.el \ |
249 $(lispsource)language/slovak.el \ | |
250 $(lispsource)language/romanian.el \ | |
251 $(lispsource)language/greek.el \ | |
252 $(lispsource)language/hebrew.el \ | |
253 $(lispsource)language/japanese.el \ | |
254 $(lispsource)language/korean.el \ | |
255 $(lispsource)language/lao.el \ | |
91063
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
256 $(lispsource)language/tai-viet.el \ |
41804 | 257 $(lispsource)language/thai.el \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
258 $(lispsource)language/tibetan.elc \ |
91063
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
259 $(lispsource)language/vietnamese.el \ |
41804 | 260 $(lispsource)language/misc-lang.el \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
261 $(lispsource)language/utf-8-lang.el \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
262 $(lispsource)language/georgian.el \ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
263 $(lispsource)paths.el \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
264 $(lispsource)register.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
265 $(lispsource)replace.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
266 $(lispsource)simple.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
267 $(lispsource)startup.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
268 $(lispsource)subr.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
269 $(lispsource)term/tty-colors.elc \ |
45805
4f0eb43475f3
(lisp): Add international/ucs-tables.elc and font-core.elc.
Juanma Barranquero <lekktu@gmail.com>
parents:
44216
diff
changeset
|
270 $(lispsource)font-core.elc \ |
67922
3de387bf632e
(MOUSE_SUPPORT): Add tooltip.elc.
Eli Zaretskii <eliz@gnu.org>
parents:
65447
diff
changeset
|
271 $(lispsource)emacs-lisp/syntax.elc \ |
3de387bf632e
(MOUSE_SUPPORT): Add tooltip.elc.
Eli Zaretskii <eliz@gnu.org>
parents:
65447
diff
changeset
|
272 $(lispsource)font-lock.elc \ |
3de387bf632e
(MOUSE_SUPPORT): Add tooltip.elc.
Eli Zaretskii <eliz@gnu.org>
parents:
65447
diff
changeset
|
273 $(lispsource)jit-lock.elc \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
274 $(lispsource)textmodes/fill.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
275 $(lispsource)textmodes/page.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
276 $(lispsource)textmodes/paragraphs.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
277 $(lispsource)textmodes/text-mode.elc \ |
67922
3de387bf632e
(MOUSE_SUPPORT): Add tooltip.elc.
Eli Zaretskii <eliz@gnu.org>
parents:
65447
diff
changeset
|
278 $(lispsource)emacs-lisp/timer.elc \ |
91063
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
279 $(lispsource)jka-cmpr-hook.elc \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
280 $(lispsource)vc-hooks.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
281 $(lispsource)ediff-hook.elc \ |
91063
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
282 $(TOOLTIP_SUPPORT) \ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
283 $(VMS_SUPPORT) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
284 $(MSDOS_SUPPORT) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
285 $(WINNT_SUPPORT) \ |
91063
9957b92b2e1e
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
Jason Rumney <jasonr@gnu.org>
parents:
91060
diff
changeset
|
286 $(WINDOW_SUPPORT) \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
287 $(lispsource)widget.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
288 $(lispsource)window.elc \ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
289 $(lispsource)version.el |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
290 |
73672
4f7cb3d8f0b1
(../src/$(BLD)/temacs.exe): Create as temporary file if it doesn't already
Eli Zaretskii <eliz@gnu.org>
parents:
73561
diff
changeset
|
291 # This is needed the first time we build the tree, since temacs.exe |
4f7cb3d8f0b1
(../src/$(BLD)/temacs.exe): Create as temporary file if it doesn't already
Eli Zaretskii <eliz@gnu.org>
parents:
73561
diff
changeset
|
292 # does not exist yet, and the DOC rule needs it to rebuild DOC whenever |
4f7cb3d8f0b1
(../src/$(BLD)/temacs.exe): Create as temporary file if it doesn't already
Eli Zaretskii <eliz@gnu.org>
parents:
73561
diff
changeset
|
293 # Emacs is rebuilt. |
4f7cb3d8f0b1
(../src/$(BLD)/temacs.exe): Create as temporary file if it doesn't already
Eli Zaretskii <eliz@gnu.org>
parents:
73561
diff
changeset
|
294 ../src/$(BLD)/temacs.exe: |
4f7cb3d8f0b1
(../src/$(BLD)/temacs.exe): Create as temporary file if it doesn't already
Eli Zaretskii <eliz@gnu.org>
parents:
73561
diff
changeset
|
295 - mkdir "../src/$(OBJDIR)" |
4f7cb3d8f0b1
(../src/$(BLD)/temacs.exe): Create as temporary file if it doesn't already
Eli Zaretskii <eliz@gnu.org>
parents:
73561
diff
changeset
|
296 - mkdir "../src/$(BLD)" |
4f7cb3d8f0b1
(../src/$(BLD)/temacs.exe): Create as temporary file if it doesn't already
Eli Zaretskii <eliz@gnu.org>
parents:
73561
diff
changeset
|
297 @echo temacs > temacs.exe |
4f7cb3d8f0b1
(../src/$(BLD)/temacs.exe): Create as temporary file if it doesn't already
Eli Zaretskii <eliz@gnu.org>
parents:
73561
diff
changeset
|
298 $(CP) temacs.exe ../src/$(BLD) |
4f7cb3d8f0b1
(../src/$(BLD)/temacs.exe): Create as temporary file if it doesn't already
Eli Zaretskii <eliz@gnu.org>
parents:
73561
diff
changeset
|
299 - $(DEL) temacs.exe |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
300 |
47753
6859b96dbdd7
(lisp): Load devanagari.el, not .elc.
Juanma Barranquero <lekktu@gmail.com>
parents:
47613
diff
changeset
|
301 DOC = DOC |
74802
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
302 $(DOC): stamp_BLD $(BLD)/make-docfile.exe ../src/$(BLD)/temacs.exe $(lisp1) $(lisp2) |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
303 - $(DEL) $(DOC) |
48894
18c79e584eb1
($(DOC)): Use -o and -a options to make-docfile,
Andrew Innes <andrewi@gnu.org>
parents:
48453
diff
changeset
|
304 "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj) |
55452
fdbb1911034d
(lisp1, lisp2): Split lisp to avoid long command-lines.
Jason Rumney <jasonr@gnu.org>
parents:
55092
diff
changeset
|
305 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp1) |
fdbb1911034d
(lisp1, lisp2): Split lisp to avoid long command-lines.
Jason Rumney <jasonr@gnu.org>
parents:
55092
diff
changeset
|
306 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp2) |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
307 $(CP) $(DOC) ../etc/DOC-X |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
308 - mkdir "../src/$(OBJDIR)" |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
309 - mkdir "../src/$(OBJDIR)/etc" |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
310 $(CP) $(DOC) ../src/$(OBJDIR)/etc/DOC-X |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
311 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
312 {$(BLD)}.$(O){$(BLD)}.exe: |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
313 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $*.$(O) $(LIBS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
314 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
315 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
316 # Build the executables |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
317 # |
74802
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
318 all: stamp_BLD $(ALL) $(DOC) |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
319 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
320 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
321 # Assuming INSTALL_DIR is defined, build and install emacs in it. |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
322 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
323 INSTALL_FILES = $(ALL) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
324 install: $(INSTALL_FILES) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
325 - mkdir "$(INSTALL_DIR)/bin" |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
326 $(CP) $(BLD)/etags.exe $(INSTALL_DIR)/bin |
34031
fb2af42432a8
($(BLD)/ebrowse.exe): Use tabs not spaces.
Andrew Innes <andrewi@gnu.org>
parents:
33831
diff
changeset
|
327 $(CP) $(BLD)/ebrowse.exe $(INSTALL_DIR)/bin |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
328 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
329 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
330 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin |
71197
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
331 $(CP) $(BLD)/sorted-doc.exe $(INSTALL_DIR)/bin |
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
332 $(CP) $(BLD)/digest-doc.exe $(INSTALL_DIR)/bin |
73561
cdd279778a20
(ALL): Add emacsclient.
Juanma Barranquero <lekktu@gmail.com>
parents:
73311
diff
changeset
|
333 $(CP) $(BLD)/emacsclient.exe $(INSTALL_DIR)/bin |
73974
5c5306b4cb49
(emacsclient): Depend also on emacsclientw.exe.
Juanma Barranquero <lekktu@gmail.com>
parents:
73954
diff
changeset
|
334 $(CP) $(BLD)/emacsclientw.exe $(INSTALL_DIR)/bin |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
335 - mkdir "$(INSTALL_DIR)/etc" |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
336 $(CP) $(DOC) $(INSTALL_DIR)/etc |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
337 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
338 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
339 # Maintenance |
47753
6859b96dbdd7
(lisp): Load devanagari.el, not .elc.
Juanma Barranquero <lekktu@gmail.com>
parents:
47613
diff
changeset
|
340 # |
78176 | 341 # We used to delete *~ here, but that might inadvertently remove |
342 # precious files if it happens to match their short 8+3 aliases. | |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
343 clean: |
78176 | 344 - $(DEL) DOC* $(COMPILER_TEMP_FILES) |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
345 - $(DEL) ctags.c |
64655
1ec980dc979f
(clean): Delete getopt.h.
Juanma Barranquero <lekktu@gmail.com>
parents:
64083
diff
changeset
|
346 - $(DEL) getopt.h |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
347 - $(DEL_TREE) $(OBJDIR) |
74816 | 348 - $(DEL) stamp_BLD |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
349 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
350 cleanall: clean |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
351 - $(DEL_TREE) obj |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
352 - $(DEL_TREE) obj-spd |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
353 - $(DEL_TREE) oo |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
354 - $(DEL_TREE) oo-spd |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
355 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
356 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
357 # Headers we would preprocess if we could. |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
358 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
359 ../src/config.h: ../nt/$(CONFIG_H) |
73311
5e2029cd6a15
(../src/config.h): Fix error message.
Eli Zaretskii <eliz@gnu.org>
parents:
71295
diff
changeset
|
360 echo $(CONFIG_H) has changed. Re-run configure.bat. |
65447
91dbefb72927
(../src/config.h): Don't overwrite. Print a message instead.
Jason Rumney <jasonr@gnu.org>
parents:
64769
diff
changeset
|
361 exit -1 |
91dbefb72927
(../src/config.h): Don't overwrite. Print a message instead.
Jason Rumney <jasonr@gnu.org>
parents:
64769
diff
changeset
|
362 |
64655
1ec980dc979f
(clean): Delete getopt.h.
Juanma Barranquero <lekktu@gmail.com>
parents:
64083
diff
changeset
|
363 getopt.h: getopt_.h |
1ec980dc979f
(clean): Delete getopt.h.
Juanma Barranquero <lekktu@gmail.com>
parents:
64083
diff
changeset
|
364 $(CP) $(ALL_DEPS) $@ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
365 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
366 ### DEPENDENCIES ### |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
367 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
368 EMACS_ROOT = .. |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
369 SRC = . |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
370 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
371 $(BLD)/alloca.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
372 $(SRC)/alloca.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
373 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
374 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
375 $(EMACS_ROOT)/src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
376 $(EMACS_ROOT)/src/blockinput.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
377 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
378 $(BLD)/b2m.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
379 $(SRC)/b2m.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
380 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
381 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
382 $(EMACS_ROOT)/lib-src/../src/config.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
383 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
384 $(BLD)/ctags.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
385 $(SRC)/ctags.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
386 $(EMACS_ROOT)/nt/inc/sys/param.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
387 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
388 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
389 $(EMACS_ROOT)/lib-src/../src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
390 $(SRC)/ntlib.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
391 $(SRC)/getopt.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
392 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
393 $(BLD)/digest-doc.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
394 $(SRC)/digest-doc.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
395 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
396 $(BLD)/emacsclient.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
397 $(SRC)/emacsclient.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
398 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
399 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
400 $(EMACS_ROOT)/lib-src/../src/config.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
401 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
402 $(BLD)/etags.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
403 $(SRC)/etags.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
404 $(EMACS_ROOT)/nt/inc/sys/param.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
405 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
406 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
407 $(EMACS_ROOT)/lib-src/../src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
408 $(SRC)/ntlib.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
409 $(SRC)/getopt.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
410 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
411 $(BLD)/fakemail.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
412 $(SRC)/fakemail.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
413 $(SRC)/ntlib.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
414 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
415 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
416 $(EMACS_ROOT)/lib-src/../src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
417 $(EMACS_ROOT)/nt/inc/pwd.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
418 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
419 $(BLD)/getdate.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
420 $(SRC)/getdate.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
421 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
422 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
423 $(EMACS_ROOT)/src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
424 $(MSTOOLS_SYS)/types.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
425 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
426 $(BLD)/getopt.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
427 $(SRC)/getopt.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
428 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
429 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
430 $(EMACS_ROOT)/src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
431 $(SRC)/ntlib.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
432 $(SRC)/getopt.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
433 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
434 $(BLD)/getopt1.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
435 $(SRC)/getopt1.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
436 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
437 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
438 $(EMACS_ROOT)/src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
439 $(SRC)/getopt.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
440 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
441 $(BLD)/hexl.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
442 $(SRC)/hexl.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
443 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
444 $(BLD)/leditcfns.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
445 $(SRC)/leditcfns.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
446 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
447 $(BLD)/make-docfile.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
448 $(SRC)/make-docfile.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
449 $(EMACS_ROOT)/src/config.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
450 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
451 $(BLD)/make-path.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
452 $(SRC)/make-path.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
453 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
454 $(BLD)/movemail.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
455 $(SRC)/movemail.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
456 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
457 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
458 $(EMACS_ROOT)/lib-src/../src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
459 $(EMACS_ROOT)/nt/inc/sys/file.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
460 $(EMACS_ROOT)/lib-src/../src/syswait.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
461 $(EMACS_ROOT)/nt/inc/pwd.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
462 $(SRC)/ntlib.h |
73974
5c5306b4cb49
(emacsclient): Depend also on emacsclientw.exe.
Juanma Barranquero <lekktu@gmail.com>
parents:
73954
diff
changeset
|
463 $(CC) $(CFLAGS) -DUSG $(CC_OUT)$@ movemail.c |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
464 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
465 $(BLD)/ntlib.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
466 $(SRC)/ntlib.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
467 $(SRC)/ntlib.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
468 $(EMACS_ROOT)/nt/inc/pwd.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
469 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
470 $(BLD)/pop.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
471 $(SRC)/pop.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
472 $(SRC)/pop.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
473 $(SRC)/ntlib.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
474 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
475 $(BLD)/profile.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
476 $(SRC)/profile.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
477 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
478 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
479 $(EMACS_ROOT)/lib-src/../src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
480 $(EMACS_ROOT)/lib-src/../src/systime.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
481 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
482 $(BLD)/qsort.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
483 $(SRC)/qsort.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
484 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
485 $(BLD)/sorted-doc.$(O) : \ |
71197
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
486 $(SRC)/sorted-doc.c \ |
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
487 $(EMACS_ROOT)/src/s/ms-w32.h \ |
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
488 $(EMACS_ROOT)/src/m/intel386.h \ |
4519c2f66b5a
(ALL): Add sorted-doc and digest-doc.
Eli Zaretskii <eliz@gnu.org>
parents:
71186
diff
changeset
|
489 $(EMACS_ROOT)/src/config.h \ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
490 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
491 $(BLD)/tcp.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
492 $(SRC)/tcp.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
493 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
494 $(BLD)/test-distrib.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
495 $(SRC)/test-distrib.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
496 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
497 $(BLD)/timer.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
498 $(SRC)/timer.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
499 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
500 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
501 $(EMACS_ROOT)/lib-src/../src/config.h |
74802
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
502 |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
503 # The following dependencies are for supporting parallel builds, where |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
504 # we must make sure $(BLD) exists before any compilation starts. |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
505 # |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
506 $(BLD)/make-docfile.$(O) $(BLD)/hexl.$(O) $(BLD)/fakemail.$(O): stamp_BLD |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
507 |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
508 $(BLD)/sorted-doc.$(O) $(BLD)/digest-doc.$(O): stamp_BLD |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
509 |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
510 $(BLD)/test-distrib.$(O) $(GETOPTOBJS) $(MOVEMAILOBJS): stamp_BLD |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
511 |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
512 $(BLD)/emacsclient.$(O) $(BLD)/etags.$(O) $(BLD)/regex.$(O): stamp_BLD |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
513 |
d825af228b06
(make-docfile, ctags, etags, ebrowse, hexl)
Eli Zaretskii <eliz@gnu.org>
parents:
74759
diff
changeset
|
514 $(BLD)/ebrowse.$(O) $(BLD)/ctags.$(O): stamp_BLD |