Mercurial > emacs
annotate lib-src/makefile.nt @ 15257:25dbb4494147
Hold previous change until after the release.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sat, 18 May 1996 20:15:02 +0000 |
parents | 667dd3ec7663 |
children | 74032d1d3223 |
rev | line source |
---|---|
9803 | 1 # Makefile for GNU Emacs lib-src directory. |
2 # Geoff Voelker (voelker@cs.washington.edu) | |
3 # Copyright (C) 1994 Free Software Foundation, Inc. | |
4 # | |
5 # This file is part of GNU Emacs. | |
6 # | |
7 # GNU Emacs is free software; you can redistribute it and/or modify | |
8 # it under the terms of the GNU General Public License as published by | |
9 # the Free Software Foundation; either version 2, or (at your option) | |
10 # any later version. | |
11 # | |
12 # GNU Emacs is distributed in the hope that it will be useful, | |
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 # GNU General Public License for more details. | |
16 # | |
17 # You should have received a copy of the GNU General Public License | |
18 # along with GNU Emacs; see the file COPYING. If not, write to | |
19 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
20 # | |
21 | |
22 # | |
23 # Sets up the system dependent macros. | |
24 # | |
25 !include ..\nt\makefile.def | |
26 | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
27 LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 -DNO_ARCHIVES=1 -I..\nt\inc -I..\src |
9803 | 28 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
29 LINK_FLAGS = $(ARCH_LDFLAGS) -debug:PARTIAL -machine:$(ARCH) -subsystem:console -entry:mainCRTStartup setargv.obj |
9803 | 30 |
31 ALL = $(BLD)\make-docfile.exe \ | |
32 $(BLD)\hexl.exe \ | |
33 $(BLD)\wakeup.exe \ | |
34 $(BLD)\ctags.exe \ | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
35 $(BLD)\etags.exe \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
36 $(BLD)\movemail.exe \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
37 $(BLD)\fakemail.exe \ |
9803 | 38 |
39 | |
40 # don't know what (if) to do with these yet... | |
41 # | |
42 # $(BLD)\sorted-doc.exe \ | |
43 # $(BLD)\env.exe \ | |
44 # $(BLD)\server.exe \ | |
45 # $(BLD)\emacstool.exe \ | |
46 # $(BLD)\leditcfns.exe \ | |
47 # $(BLD)\emacsclient.exe \ | |
48 # $(BLD)\cvtmail.exe \ | |
49 # $(BLD)\digest-doc.exe \ | |
50 # $(BLD)\test-distrib.exe \ | |
51 | |
52 | |
11939 | 53 LIBS = $(BASE_LIBS) |
9803 | 54 |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
55 $(BLD)\make-docfile.exe: $(BLD)\make-docfile.obj $(BLD)\ntlib.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
56 $(LINK) -out:$@ $(LINK_FLAGS) $(BLD)\make-docfile.obj $(BLD)\ntlib.obj $(LIBS) |
11939 | 57 $(BLD)\hexl.exe: $(BLD)\hexl.obj |
58 $(BLD)\wakeup.exe: $(BLD)\wakeup.obj $(BLD)\ntlib.obj | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
59 $(LINK) -out:$@ $(LINK_FLAGS) $(BLD)\wakeup.obj $(BLD)\ntlib.obj $(LIBS) |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
60 $(BLD)\movemail.exe: $(BLD)\movemail.obj $(BLD)\pop.obj $(BLD)\ntlib.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
61 $(LINK) -out:$@ $(LINK_FLAGS) -debug:FULL $(BLD)\movemail.obj $(BLD)\pop.obj $(BLD)\ntlib.obj $(LIBS) wsock32.lib |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
62 $(BLD)\fakemail.exe: $(BLD)\fakemail.obj $(BLD)\ntlib.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
63 $(LINK) -out:$@ $(LINK_FLAGS) -debug:full $(BLD)\fakemail.obj $(BLD)\ntlib.obj $(LIBS) |
9803 | 64 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
65 make-docfile: $(BLD) $(BLD)\make-docfile.exe |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
66 wakeup: $(BLD) $(BLD)\wakeup.exe |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
67 etags: $(BLD) $(BLD)\etags.exe |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
68 hexl: $(BLD) $(BLD)\hexl.exe |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
69 movemail: $(BLD) $(BLD)\movemail.exe |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
70 fakemail: $(BLD) $(BLD)\fakemail.exe |
9803 | 71 |
72 ETAGSOBJ = $(BLD)\etags.obj \ | |
73 $(BLD)\getopt.obj \ | |
74 $(BLD)\getopt1.obj \ | |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
75 $(BLD)\ntlib.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
76 $(BLD)\regex.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
77 $(BLD)\alloca.obj |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
78 |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
79 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
80 $(BLD)\etags.exe: $(ETAGSOBJ) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
81 $(LINK) -out:$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
82 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
83 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
84 $(BLD)\regex.obj: ../src/regex.c ../src/regex.h ../src/config.h |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
85 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
86 ../src/regex.c -Fo$@ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
87 |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
88 ETAGS_CFLAGS = -DETAGS_REGEXPS |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
89 $(BLD)\etags.obj: etags.c |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
90 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) -Fo$@ etags.c |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
91 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
92 CTAGSOBJ = $(BLD)\ctags.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
93 $(BLD)\getopt.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
94 $(BLD)\getopt1.obj \ |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
95 $(BLD)\ntlib.obj \ |
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
96 $(BLD)\regex.obj \ |
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
97 $(BLD)\alloca.obj |
9803 | 98 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
99 $(BLD)\ctags.exe: ctags.c $(CTAGSOBJ) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
100 $(LINK) -out:$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
101 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
102 ctags.c: etags.c |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
103 - $(DEL) ctags.c |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
104 copy etags.c ctags.c |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
105 |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
106 CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS) |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
107 $(BLD)\ctags.obj: ctags.c |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
108 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) -Fo$@ ctags.c |
9803 | 109 |
110 # | |
111 # don't know what to do with these yet... | |
112 # | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
113 # $(BLD)\sorted-doc.exe: $(BLD)\sorted-doc.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
114 # $(BLD)\yow.exe: $(BLD)\yow.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
115 # $(BLD)\emacstool.exe: $(BLD)\emacstool.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
116 # $(BLD)\leditcfns.exe: $(BLD)\leditcfns.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
117 # $(BLD)\server.exe: $(BLD)\server.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
118 # $(BLD)\cvtmail.exe: $(BLD)\cvtmail.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
119 # $(BLD)\digest-doc.exe: $(BLD)\digest-doc.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
120 # $(BLD)\emacsclient.exe: $(BLD)\emacsclient.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
121 # $(BLD)\test-distrib.exe: $(BLD)\test-distrib.obj |
9803 | 122 |
123 # | |
11939 | 124 # From ..\src\makefile.nt. |
9803 | 125 # |
13429
a90a9820c5f6
(DOC): Include strings from w32term.c, w32xfns.c,
Geoff Voelker <voelker@cs.washington.edu>
parents:
12241
diff
changeset
|
126 obj = abbrev.c alloc.c alloca.c buffer.c bytecode.c callint.c callproc.c casefiddle.c cm.c cmds.c data.c dired.c dispnew.c doc.c doprnt.c editfns.c eval.c fileio.c filelock.c filemode.c fns.c indent.c insdel.c keyboard.c keymap.c lastfile.c lread.c macros.c marker.c minibuf.c xfaces.c mocklisp.c nt.c ntheap.c ntinevt.c ntproc.c ntterm.c print.c process.c regex.c scroll.c search.c syntax.c sysdep.c term.c termcap.c tparam.c undo.c unexnt.c window.c xdisp.c casetab.c floatfns.c frame.c gmalloc.c intervals.c ralloc.c textprop.c vm-limit.c region-cache.c strftime.c w32term.c w32xfns.c w32fns.c w32faces.c w32select.c w32menu.c w32reg.c |
9803 | 127 |
128 lispdir = ..\lisp | |
129 | |
130 # | |
131 # These are the lisp files that are loaded up in loadup.el | |
132 # | |
133 lisp= \ | |
134 $(lispdir)\subr.elc \ | |
135 $(lispdir)\byte-run.elc \ | |
136 $(lispdir)\map-ynp.elc \ | |
137 $(lispdir)\loaddefs.el \ | |
138 $(lispdir)\simple.elc \ | |
139 $(lispdir)\help.elc \ | |
140 $(lispdir)\files.elc \ | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
141 $(lispdir)\format.elc \ |
9803 | 142 $(lispdir)\indent.elc \ |
143 $(lispdir)\window.elc \ | |
144 $(lispdir)\frame.elc \ | |
145 $(lispdir)\mouse.elc \ | |
146 $(lispdir)\menu-bar.elc \ | |
147 $(lispdir)\scroll-bar.elc \ | |
148 $(lispdir)\select.elc \ | |
149 $(lispdir)\paths.el \ | |
150 $(lispdir)\startup.elc \ | |
151 $(lispdir)\lisp.elc \ | |
152 $(lispdir)\page.elc \ | |
153 $(lispdir)\register.elc \ | |
154 $(lispdir)\paragraphs.elc \ | |
155 $(lispdir)\lisp-mode.elc \ | |
156 $(lispdir)\text-mode.elc \ | |
157 $(lispdir)\fill.elc \ | |
158 $(lispdir)\c-mode.elc \ | |
159 $(lispdir)\isearch.elc \ | |
160 $(lispdir)\replace.elc \ | |
161 $(lispdir)\abbrev.elc \ | |
162 $(lispdir)\buff-menu.elc \ | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
163 $(lispdir)\ls-lisp.elc \ |
9803 | 164 $(lispdir)\winnt.elc \ |
165 $(lispdir)\float-sup.elc \ | |
166 $(lispdir)\vc-hooks.elc \ | |
15257
25dbb4494147
Hold previous change until after the release.
Karl Heuer <kwzh@gnu.org>
parents:
15255
diff
changeset
|
167 $(lispdir)\version.el |
9803 | 168 |
169 DOC = DOC | |
170 $(DOC): $(BLD)\make-docfile.exe | |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
171 - $(DEL) $(DOC) |
9803 | 172 $(BLD)\make-docfile -d ..\src $(obj) > $(DOC) |
173 $(BLD)\make-docfile -d ..\src $(lisp) >> $(DOC) | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
174 $(CP) $(DOC) ..\etc\DOC-X |
9803 | 175 - mkdir ..\src\$(OBJDIR) |
176 - mkdir ..\src\$(OBJDIR)\etc | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
177 $(CP) $(DOC) ..\src\$(OBJDIR)\etc\DOC-X |
9803 | 178 |
179 {$(BLD)}.obj{$(BLD)}.exe: | |
180 $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) | |
181 | |
182 .c{$(BLD)}.obj: | |
183 $(CC) $(CFLAGS) -Fo$@ $< | |
184 | |
185 # | |
186 # Build the executables | |
187 # | |
188 all: $(BLD) $(ALL) $(DOC) | |
189 | |
190 # | |
191 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
192 # | |
193 INSTALL_FILES = $(ALL) | |
194 install: $(INSTALL_FILES) | |
195 - mkdir $(INSTALL_DIR)\bin | |
196 $(CP) $(BLD)\etags.exe $(INSTALL_DIR)\bin | |
197 $(CP) $(BLD)\ctags.exe $(INSTALL_DIR)\bin | |
198 $(CP) $(BLD)\hexl.exe $(INSTALL_DIR)\bin | |
12241
f92938c6b7c9
(install): Copy wakeup.exe properly.
Richard M. Stallman <rms@gnu.org>
parents:
11939
diff
changeset
|
199 $(CP) $(BLD)\wakeup.exe $(INSTALL_DIR)\bin |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
200 $(CP) $(BLD)\movemail.exe $(INSTALL_DIR)\bin |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
201 $(CP) $(BLD)\fakemail.exe $(INSTALL_DIR)\bin |
9803 | 202 - mkdir $(INSTALL_DIR)\etc |
203 $(CP) $(DOC) $(INSTALL_DIR)\etc | |
204 | |
205 # | |
206 # Maintenance | |
207 # | |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
208 clean:; - $(DEL) *~ *.pdb DOC* |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
209 - $(DEL_TREE) deleted |
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
210 - $(DEL_TREE) obj |
9803 | 211 |
212 # | |
213 # Headers we would preprocess if we could. | |
214 # | |
11939 | 215 ..\src\config.h: ..\nt\$(CONFIG_H) |
216 $(CP) $** $@ | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
217 ..\src\paths.h: ..\nt\paths.h |
11939 | 218 $(CP) $** $@ |
9803 | 219 |
220 ### DEPENDENCIES ### | |
221 | |
222 EMACS_ROOT = .. | |
223 SRC = . | |
224 | |
225 $(BLD)\alloca.obj : \ | |
226 $(SRC)\alloca.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
227 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
228 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 229 $(EMACS_ROOT)\src\config.h \ |
230 $(EMACS_ROOT)\src\blockinput.h | |
231 | |
232 $(BLD)\b2m.obj : \ | |
233 $(SRC)\b2m.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
234 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
235 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 236 $(EMACS_ROOT)\lib-src\..\src\config.h |
237 | |
238 $(BLD)\cvtmail.obj : \ | |
239 $(SRC)\cvtmail.c | |
240 | |
241 $(BLD)\digest-doc.obj : \ | |
242 $(SRC)\digest-doc.c | |
243 | |
244 $(BLD)\emacsclient.obj : \ | |
245 $(SRC)\emacsclient.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
246 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
247 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 248 $(EMACS_ROOT)\lib-src\..\src\config.h |
249 | |
250 $(BLD)\emacsserver.obj : \ | |
251 $(SRC)\emacsserver.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
252 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
253 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 254 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
255 $(EMACS_ROOT)\nt\inc\sys\file.h | |
256 | |
257 $(BLD)\emacstool.obj : \ | |
258 $(SRC)\emacstool.c \ | |
259 $(EMACS_ROOT)\nt\inc\sys\file.h | |
260 | |
261 $(BLD)\etags.obj : \ | |
262 $(SRC)\etags.c \ | |
263 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
264 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
265 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 266 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
267 $(SRC)\getopt.h | |
268 | |
269 $(BLD)\fakemail.obj : \ | |
270 $(SRC)\fakemail.c \ | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
271 $(SRC)\ntlib.h \ |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
272 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
273 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 274 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
275 $(EMACS_ROOT)\nt\inc\pwd.h | |
276 | |
277 $(BLD)\getdate.obj : \ | |
278 $(SRC)\getdate.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
279 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
280 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 281 $(EMACS_ROOT)\src\config.h \ |
282 $(MSTOOLS_SYS)\types.h | |
283 | |
284 $(BLD)\getopt.obj : \ | |
285 $(SRC)\getopt.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
286 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
287 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 288 $(EMACS_ROOT)\src\config.h \ |
289 $(SRC)\getopt.h | |
290 | |
291 $(BLD)\getopt1.obj : \ | |
292 $(SRC)\getopt1.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
293 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
294 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 295 $(EMACS_ROOT)\src\config.h \ |
296 $(SRC)\getopt.h | |
297 | |
298 $(BLD)\hexl.obj : \ | |
299 $(SRC)\hexl.c | |
300 | |
301 $(BLD)\leditcfns.obj : \ | |
302 $(SRC)\leditcfns.c | |
303 | |
304 $(BLD)\make-docfile.obj : \ | |
11939 | 305 $(SRC)\make-docfile.c \ |
306 $(EMACS_ROOT)\src\config.h | |
9803 | 307 |
308 $(BLD)\make-path.obj : \ | |
309 $(SRC)\make-path.c | |
310 | |
311 $(BLD)\movemail.obj : \ | |
312 $(SRC)\movemail.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
313 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
314 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 315 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
316 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
317 $(EMACS_ROOT)\src\vmsproc.h \ | |
318 $(EMACS_ROOT)\lib-src\..\src\syswait.h \ | |
319 $(EMACS_ROOT)\nt\inc\pwd.h | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
320 $(CC) $(CFLAGS) -DUSG -Fo$@ movemail.c |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
321 |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
322 $(BLD)\ntlib.obj : \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
323 $(SRC)\ntlib.c \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
324 $(SRC)\ntlib.h \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
325 $(EMACS_ROOT)\nt\inc\pwd.h |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
326 |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
327 $(BLD)\pop.obj : \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
328 $(SRC)\pop.c \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
329 $(SRC)\pop.h \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
330 $(SRC)\ntlib.h |
9803 | 331 |
332 $(BLD)\profile.obj : \ | |
333 $(SRC)\profile.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
334 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
335 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 336 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
337 $(EMACS_ROOT)\src\vmstime.h \ | |
338 $(EMACS_ROOT)\lib-src\..\src\systime.h | |
339 | |
340 $(BLD)\qsort.obj : \ | |
341 $(SRC)\qsort.c | |
342 | |
343 $(BLD)\sorted-doc.obj : \ | |
344 $(SRC)\sorted-doc.c | |
345 | |
346 $(BLD)\tcp.obj : \ | |
347 $(SRC)\tcp.c | |
348 | |
349 $(BLD)\test-distrib.obj : \ | |
350 $(SRC)\test-distrib.c | |
351 | |
352 $(BLD)\timer.obj : \ | |
353 $(SRC)\timer.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
354 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
355 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 356 $(EMACS_ROOT)\lib-src\..\src\config.h |
357 | |
358 $(BLD)\wakeup.obj : \ | |
359 $(SRC)\wakeup.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
360 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
361 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 362 $(EMACS_ROOT)\src\config.h |
363 | |
364 $(BLD)\yow.obj : \ | |
365 $(SRC)\yow.c \ | |
366 $(EMACS_ROOT)\lib-src\..\src\paths.h |