Mercurial > emacs
annotate lib-src/makefile.w32-in @ 64913:989a5fc8da03
(Misc Network, Network Feature Testing)
(Network Options, Make Network): New nodes split out of Low-Level Network.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 11 Aug 2005 19:46:35 +0000 |
parents | 6358e3c6075c |
children | 91dbefb72927 2d92f5c9d6ae |
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, |
6358e3c6075c
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64655
diff
changeset
|
3 # 2005 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 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
9 # the Free Software Foundation; either version 2, or (at your option) |
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 |
39751 | 23 ALL = make-docfile hexl ctags etags movemail ebrowse |
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 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
27 LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \ |
33831 | 28 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \ |
34259
3e91ae9e8c6f
(LOCAL_FLAGS): Remove -DVERSION flag, since we
Andrew Innes <andrewi@gnu.org>
parents:
34031
diff
changeset
|
29 -I../src |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
30 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
31 # don't know what (if) to do with these yet... |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
32 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
33 # $(BLD)/sorted-doc.exe \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
34 # $(BLD)/env.exe \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
35 # $(BLD)/server.exe \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
36 # $(BLD)/emacstool.exe \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
37 # $(BLD)/leditcfns.exe \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
38 # $(BLD)/emacsclient.exe \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
39 # $(BLD)/cvtmail.exe \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
40 # $(BLD)/digest-doc.exe \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
41 # $(BLD)/test-distrib.exe \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
42 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
43 LIBS = $(BASE_LIBS) $(ADVAPI32) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
44 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
45 $(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
|
46 $(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
|
47 $(BLD)/hexl.exe: $(BLD)/hexl.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
48 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/hexl.$(O) $(LIBS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
49 $(BLD)/fakemail.exe: $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
50 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) $(LIBS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
51 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
52 make-docfile: $(BLD) $(BLD)/make-docfile.exe |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
53 ctags: $(BLD) $(BLD)/ctags.exe |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
54 etags: $(BLD) $(BLD)/etags.exe |
33831 | 55 ebrowse: $(BLD) $(BLD)/ebrowse.exe |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
56 hexl: $(BLD) $(BLD)/hexl.exe |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
57 movemail: $(BLD) $(BLD)/movemail.exe |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
58 fakemail: $(BLD) $(BLD)/fakemail.exe |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
59 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
60 GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
61 GETOPTDEPS = $(GETOPTOBJS) getopt.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
62 MOVEMAILOBJS = $(BLD)/movemail.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
63 $(BLD)/pop.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
64 $(BLD)/ntlib.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
65 $(GETOPTOBJS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
66 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
67 $(BLD)/movemail.exe: $(MOVEMAILOBJS) getopt.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
68 # 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
|
69 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(MOVEMAILOBJS) $(WSOCK32) $(LIBS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
70 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
71 ETAGSOBJ = $(BLD)/etags.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
72 $(BLD)/getopt.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
73 $(BLD)/getopt1.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
74 $(BLD)/ntlib.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
75 $(BLD)/regex.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
76 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
77 $(BLD)/etags.exe: $(ETAGSOBJ) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
78 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
79 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
80 |
33831 | 81 EBROWSEOBJ = $(BLD)/ebrowse.$(O) \ |
82 $(BLD)/getopt.$(O) \ | |
83 $(BLD)/getopt1.$(O) \ | |
84 $(BLD)/ntlib.$(O) | |
85 | |
86 $(BLD)/ebrowse.exe: $(EBROWSEOBJ) | |
34031
fb2af42432a8
($(BLD)/ebrowse.exe): Use tabs not spaces.
Andrew Innes <andrewi@gnu.org>
parents:
33831
diff
changeset
|
87 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(EBROWSEOBJ) $(LIBS) |
33831 | 88 |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
89 $(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
|
90 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
91 ../src/regex.c $(CC_OUT)$@ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
92 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
93 ETAGS_CFLAGS = -DHAVE_GETCWD |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
94 $(BLD)/etags.$(O): etags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
95 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
96 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
97 CTAGSOBJ = $(BLD)/ctags.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
98 $(BLD)/getopt.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
99 $(BLD)/getopt1.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
100 $(BLD)/ntlib.$(O) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
101 $(BLD)/regex.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
102 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
103 $(BLD)/ctags.exe: $(CTAGSOBJ) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
104 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
105 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
106 ctags.c: etags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
107 - $(DEL) ctags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
108 $(CP) etags.c ctags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
109 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
110 CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
111 $(BLD)/ctags.$(O): ctags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
112 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
113 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
114 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
115 # don't know what to do with these yet... |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
116 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
117 # $(BLD)/sorted-doc.exe: $(BLD)/sorted-doc.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
118 # $(BLD)/yow.exe: $(BLD)/yow.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
119 # $(BLD)/emacstool.exe: $(BLD)/emacstool.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
120 # $(BLD)/leditcfns.exe: $(BLD)/leditcfns.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
121 # $(BLD)/server.exe: $(BLD)/server.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
122 # $(BLD)/cvtmail.exe: $(BLD)/cvtmail.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
123 # $(BLD)/digest-doc.exe: $(BLD)/digest-doc.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
124 # $(BLD)/emacsclient.exe: $(BLD)/emacsclient.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
125 # $(BLD)/test-distrib.exe: $(BLD)/test-distrib.$(O) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
126 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
127 # |
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
|
128 # 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
|
129 # 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
|
130 # 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
|
131 # 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
|
132 # |
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
|
133 obj= sunfns.o dosfns.o msdos.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
|
134 xterm.o xfns.o xmenu.o xselect.o xrdb.o fringe.o image.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
|
135 mac.o macterm.o macfns.o macmenu.o fontset.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
|
136 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
|
137 w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.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
|
138 dispnew.o frame.o scroll.o xdisp.o window.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
|
139 charset.o coding.o category.o ccl.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
|
140 cm.o term.o xfaces.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
|
141 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
|
142 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
|
143 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
|
144 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
|
145 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
|
146 eval.o floatfns.o fns.o print.o lread.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
|
147 abbrev.o syntax.o bytecode.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
|
148 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
|
149 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
|
150 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
|
151 |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
152 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
153 # 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
|
154 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
155 lispsource = ../lisp/ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
156 |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
157 MOUSE_SUPPORT = $(lispsource)select.elc $(lispsource)scroll-bar.elc $(lispsource)mouse.elc |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
158 WINNT_SUPPORT = $(lispsource)ls-lisp.elc $(lispsource)disp-table.elc $(lispsource)w32-fns.elc $(lispsource)dos-w32.elc $(lispsource)w32-vars.elc |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
159 |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
160 # lisp files that are loaded up on other platforms |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
161 MSDOS_SUPPORT = $(lispsource)dos-fns.elc $(lispsource)dos-vars.elc $(lispsource)international/ccl.elc $(lispsource)international/codepage.elc |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
162 VMS_SUPPORT = $(lispsource)vmsproc.elc $(lispsource)vms-patch.elc |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
163 |
55452
fdbb1911034d
(lisp1, lisp2): Split lisp to avoid long command-lines.
Jason Rumney <jasonr@gnu.org>
parents:
55092
diff
changeset
|
164 lisp1= \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
165 $(lispsource)abbrev.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
166 $(lispsource)buff-menu.elc \ |
43523
c7eaaa9c5bf5
Add missing backslash.
Juanma Barranquero <lekktu@gmail.com>
parents:
43515
diff
changeset
|
167 $(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
|
168 $(lispsource)emacs-lisp/byte-run.elc \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
169 $(lispsource)cus-start.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
170 $(lispsource)custom.elc \ |
44216
3c0c4e024b4f
Move backquote.elc into emacs-lisp.
Jason Rumney <jasonr@gnu.org>
parents:
43523
diff
changeset
|
171 $(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
|
172 $(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
|
173 $(lispsource)emacs-lisp/lisp.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
174 $(lispsource)env.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
175 $(lispsource)faces.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
176 $(lispsource)files.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
177 $(lispsource)format.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
178 $(lispsource)facemenu.elc \ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
179 $(MOUSE_SUPPORT) \ |
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
|
180 $(lispsource)emacs-lisp/float-sup.elc \ |
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
|
181 $(lispsource)frame.elc \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
182 $(lispsource)help.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
183 $(lispsource)indent.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
184 $(lispsource)isearch.elc \ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
185 $(lispsource)loadup.el \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
186 $(lispsource)loaddefs.el \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
187 $(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
|
188 $(lispsource)emacs-lisp/map-ynp.elc \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
189 $(lispsource)menu-bar.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
190 $(lispsource)international/mule.elc \ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
191 $(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
|
192 $(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
|
193 $(lispsource)international/characters.elc \ |
45805
4f0eb43475f3
(lisp): Add international/ucs-tables.elc and font-core.elc.
Juanma Barranquero <lekktu@gmail.com>
parents:
44216
diff
changeset
|
194 $(lispsource)international/ucs-tables.elc \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
195 $(lispsource)international/utf-8.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
196 $(lispsource)international/latin-1.el \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
197 $(lispsource)international/latin-2.el \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
198 $(lispsource)international/latin-3.el \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
199 $(lispsource)international/latin-4.el \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
200 $(lispsource)international/latin-5.el \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
201 $(lispsource)international/latin-8.el \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
202 $(lispsource)international/latin-9.el \ |
55452
fdbb1911034d
(lisp1, lisp2): Split lisp to avoid long command-lines.
Jason Rumney <jasonr@gnu.org>
parents:
55092
diff
changeset
|
203 $(lispsource)case-table.elc |
fdbb1911034d
(lisp1, lisp2): Split lisp to avoid long command-lines.
Jason Rumney <jasonr@gnu.org>
parents:
55092
diff
changeset
|
204 |
fdbb1911034d
(lisp1, lisp2): Split lisp to avoid long command-lines.
Jason Rumney <jasonr@gnu.org>
parents:
55092
diff
changeset
|
205 lisp2 = \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
206 $(lispsource)language/chinese.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
207 $(lispsource)language/cyrillic.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
208 $(lispsource)language/indian.elc \ |
47753
6859b96dbdd7
(lisp): Load devanagari.el, not .elc.
Juanma Barranquero <lekktu@gmail.com>
parents:
47613
diff
changeset
|
209 $(lispsource)language/devanagari.el \ |
49716
14e851c84328
(lisp): Add malayalam.el and tamil.el.
Juanma Barranquero <lekktu@gmail.com>
parents:
48894
diff
changeset
|
210 $(lispsource)language/malayalam.el \ |
14e851c84328
(lisp): Add malayalam.el and tamil.el.
Juanma Barranquero <lekktu@gmail.com>
parents:
48894
diff
changeset
|
211 $(lispsource)language/tamil.el \ |
41804 | 212 $(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
|
213 $(lispsource)language/ethiopic.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
214 $(lispsource)language/european.elc \ |
41804 | 215 $(lispsource)language/czech.el \ |
216 $(lispsource)language/slovak.el \ | |
217 $(lispsource)language/romanian.el \ | |
218 $(lispsource)language/greek.el \ | |
219 $(lispsource)language/hebrew.el \ | |
220 $(lispsource)language/japanese.el \ | |
221 $(lispsource)language/korean.el \ | |
222 $(lispsource)language/lao.el \ | |
223 $(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
|
224 $(lispsource)language/tibetan.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
225 $(lispsource)language/vietnamese.elc \ |
41804 | 226 $(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
|
227 $(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
|
228 $(lispsource)language/georgian.el \ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
229 $(lispsource)paths.el \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
230 $(lispsource)register.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
231 $(lispsource)replace.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
232 $(lispsource)simple.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
233 $(lispsource)startup.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
234 $(lispsource)subr.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
235 $(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
|
236 $(lispsource)font-core.elc \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
237 $(lispsource)textmodes/fill.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
238 $(lispsource)textmodes/page.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
239 $(lispsource)textmodes/paragraphs.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
240 $(lispsource)textmodes/text-mode.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
241 $(lispsource)vc-hooks.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
242 $(lispsource)ediff-hook.elc \ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
243 $(VMS_SUPPORT) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
244 $(MSDOS_SUPPORT) \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
245 $(WINNT_SUPPORT) \ |
43515
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
246 $(lispsource)widget.elc \ |
5e0b1e7145b4
(WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to using .elc files.
Jason Rumney <jasonr@gnu.org>
parents:
42279
diff
changeset
|
247 $(lispsource)window.elc \ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
248 $(lispsource)version.el |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
249 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
250 |
47753
6859b96dbdd7
(lisp): Load devanagari.el, not .elc.
Juanma Barranquero <lekktu@gmail.com>
parents:
47613
diff
changeset
|
251 DOC = DOC |
63368 | 252 $(DOC): $(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
|
253 - $(DEL) $(DOC) |
48894
18c79e584eb1
($(DOC)): Use -o and -a options to make-docfile,
Andrew Innes <andrewi@gnu.org>
parents:
48453
diff
changeset
|
254 "$(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
|
255 "$(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
|
256 "$(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
|
257 $(CP) $(DOC) ../etc/DOC-X |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
258 - mkdir "../src/$(OBJDIR)" |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
259 - mkdir "../src/$(OBJDIR)/etc" |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
260 $(CP) $(DOC) ../src/$(OBJDIR)/etc/DOC-X |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
261 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
262 {$(BLD)}.$(O){$(BLD)}.exe: |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
263 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $*.$(O) $(LIBS) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
264 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
265 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
266 # Build the executables |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
267 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
268 all: $(BLD) $(ALL) $(DOC) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
269 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
270 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
271 # 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
|
272 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
273 INSTALL_FILES = $(ALL) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
274 install: $(INSTALL_FILES) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
275 - mkdir "$(INSTALL_DIR)/bin" |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
276 $(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
|
277 $(CP) $(BLD)/ebrowse.exe $(INSTALL_DIR)/bin |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
278 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
279 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
280 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
281 - mkdir "$(INSTALL_DIR)/etc" |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
282 $(CP) $(DOC) $(INSTALL_DIR)/etc |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
283 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
284 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
285 # Maintenance |
47753
6859b96dbdd7
(lisp): Load devanagari.el, not .elc.
Juanma Barranquero <lekktu@gmail.com>
parents:
47613
diff
changeset
|
286 # |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
287 clean: |
35106
e96acf4ae36e
(clean): Delete $(COMPILER_TEMP_FILES) instead
Andrew Innes <andrewi@gnu.org>
parents:
34259
diff
changeset
|
288 - $(DEL) *~ DOC* $(COMPILER_TEMP_FILES) |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
289 - $(DEL) ctags.c |
64655
1ec980dc979f
(clean): Delete getopt.h.
Juanma Barranquero <lekktu@gmail.com>
parents:
64083
diff
changeset
|
290 - $(DEL) getopt.h |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
291 - $(DEL_TREE) $(OBJDIR) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
292 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
293 cleanall: clean |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
294 - $(DEL_TREE) obj |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
295 - $(DEL_TREE) obj-spd |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
296 - $(DEL_TREE) oo |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
297 - $(DEL_TREE) oo-spd |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
298 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
299 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
300 # Headers we would preprocess if we could. |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
301 # |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
302 ../src/config.h: ../nt/$(CONFIG_H) |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
303 $(CP) $(ALL_DEPS) $@ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
304 ../src/paths.h: ../nt/paths.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
305 $(CP) $(ALL_DEPS) $@ |
64655
1ec980dc979f
(clean): Delete getopt.h.
Juanma Barranquero <lekktu@gmail.com>
parents:
64083
diff
changeset
|
306 getopt.h: getopt_.h |
1ec980dc979f
(clean): Delete getopt.h.
Juanma Barranquero <lekktu@gmail.com>
parents:
64083
diff
changeset
|
307 $(CP) $(ALL_DEPS) $@ |
31631
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
308 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
309 ### DEPENDENCIES ### |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
310 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
311 EMACS_ROOT = .. |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
312 SRC = . |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
313 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
314 $(BLD)/alloca.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
315 $(SRC)/alloca.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
316 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
317 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
318 $(EMACS_ROOT)/src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
319 $(EMACS_ROOT)/src/blockinput.h |
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 $(BLD)/b2m.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
322 $(SRC)/b2m.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
323 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
324 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
325 $(EMACS_ROOT)/lib-src/../src/config.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
326 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
327 $(BLD)/ctags.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
328 $(SRC)/ctags.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
329 $(EMACS_ROOT)/nt/inc/sys/param.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
330 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
331 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
332 $(EMACS_ROOT)/lib-src/../src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
333 $(SRC)/ntlib.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
334 $(SRC)/getopt.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
335 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
336 $(BLD)/cvtmail.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
337 $(SRC)/cvtmail.c |
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 $(BLD)/digest-doc.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
340 $(SRC)/digest-doc.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
341 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
342 $(BLD)/emacsclient.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
343 $(SRC)/emacsclient.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
344 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
345 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
346 $(EMACS_ROOT)/lib-src/../src/config.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
347 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
348 $(BLD)/emacstool.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
349 $(SRC)/emacstool.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
350 $(EMACS_ROOT)/nt/inc/sys/file.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
351 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
352 $(BLD)/etags.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
353 $(SRC)/etags.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
354 $(EMACS_ROOT)/nt/inc/sys/param.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
355 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
356 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
357 $(EMACS_ROOT)/lib-src/../src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
358 $(SRC)/ntlib.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
359 $(SRC)/getopt.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
360 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
361 $(BLD)/fakemail.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
362 $(SRC)/fakemail.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
363 $(SRC)/ntlib.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
364 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
365 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
366 $(EMACS_ROOT)/lib-src/../src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
367 $(EMACS_ROOT)/nt/inc/pwd.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
368 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
369 $(BLD)/getdate.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
370 $(SRC)/getdate.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
371 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
372 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
373 $(EMACS_ROOT)/src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
374 $(MSTOOLS_SYS)/types.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
375 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
376 $(BLD)/getopt.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
377 $(SRC)/getopt.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
378 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
379 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
380 $(EMACS_ROOT)/src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
381 $(SRC)/ntlib.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
382 $(SRC)/getopt.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)/getopt1.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
385 $(SRC)/getopt1.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
386 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
387 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
388 $(EMACS_ROOT)/src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
389 $(SRC)/getopt.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
390 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
391 $(BLD)/hexl.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
392 $(SRC)/hexl.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
393 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
394 $(BLD)/leditcfns.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
395 $(SRC)/leditcfns.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
396 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
397 $(BLD)/make-docfile.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
398 $(SRC)/make-docfile.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
399 $(EMACS_ROOT)/src/config.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
400 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
401 $(BLD)/make-path.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
402 $(SRC)/make-path.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
403 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
404 $(BLD)/movemail.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
405 $(SRC)/movemail.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
406 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
407 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
408 $(EMACS_ROOT)/lib-src/../src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
409 $(EMACS_ROOT)/nt/inc/sys/file.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
410 $(EMACS_ROOT)/lib-src/../src/syswait.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
411 $(EMACS_ROOT)/nt/inc/pwd.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
412 $(SRC)/ntlib.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
413 $(CC) $(CFLAGS) -DUSG $(CC_OUT)$@ movemail.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
414 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
415 $(BLD)/ntlib.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
416 $(SRC)/ntlib.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
417 $(SRC)/ntlib.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
418 $(EMACS_ROOT)/nt/inc/pwd.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
419 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
420 $(BLD)/pop.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
421 $(SRC)/pop.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
422 $(SRC)/pop.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
423 $(SRC)/ntlib.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
424 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
425 $(BLD)/profile.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
426 $(SRC)/profile.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
427 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
428 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
429 $(EMACS_ROOT)/lib-src/../src/config.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
430 $(EMACS_ROOT)/lib-src/../src/systime.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
431 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
432 $(BLD)/qsort.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
433 $(SRC)/qsort.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
434 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
435 $(BLD)/sorted-doc.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
436 $(SRC)/sorted-doc.c |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
437 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
438 $(BLD)/tcp.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
439 $(SRC)/tcp.c |
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)/test-distrib.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
442 $(SRC)/test-distrib.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)/timer.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
445 $(SRC)/timer.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
446 $(EMACS_ROOT)/src/s/ms-w32.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
447 $(EMACS_ROOT)/src/m/intel386.h \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
448 $(EMACS_ROOT)/lib-src/../src/config.h |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
449 |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
450 $(BLD)/yow.$(O) : \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
451 $(SRC)/yow.c \ |
011566e20a32
Revert to Unix line endings.
Andrew Innes <andrewi@gnu.org>
parents:
31357
diff
changeset
|
452 $(EMACS_ROOT)/lib-src/../src/paths.h |