Mercurial > emacs
annotate lib-src/makefile.nt @ 13631:abb8f19ece25
(DOC, clean): Don't use switches to del not supported by Win95.
| author | Geoff Voelker <voelker@cs.washington.edu> |
|---|---|
| date | Wed, 22 Nov 1995 19:02:17 +0000 |
| parents | a90a9820c5f6 |
| children | badba571804f |
| 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 | |
| 27 LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 -DNO_ARCHIVES=1 -I..\src | |
| 28 OBJDIR = obj | |
| 29 BLD = $(OBJDIR)\$(ARCH) | |
| 30 | |
| 31 LINK_FLAGS = $(ARCH_LDFLAGS) -debug:PARTIAL -machine:$(ARCH) -subsystem:console -entry:mainCRTStartup | |
| 32 | |
| 33 ALL = $(BLD)\make-docfile.exe \ | |
| 34 $(BLD)\hexl.exe \ | |
| 35 $(BLD)\wakeup.exe \ | |
| 36 $(BLD)\ctags.exe \ | |
| 37 $(BLD)\etags.exe | |
| 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)\fakemail.exe \ | |
| 47 # $(BLD)\leditcfns.exe \ | |
| 48 # $(BLD)\movemail.exe \ | |
| 49 # $(BLD)\emacsclient.exe \ | |
| 50 # $(BLD)\cvtmail.exe \ | |
| 51 # $(BLD)\digest-doc.exe \ | |
| 52 # $(BLD)\test-distrib.exe \ | |
| 53 | |
| 54 | |
| 11939 | 55 LIBS = $(BASE_LIBS) |
| 9803 | 56 |
| 11939 | 57 $(BLD)\make-docfile.exe: $(BLD)\make-docfile.obj |
| 58 $(BLD)\hexl.exe: $(BLD)\hexl.obj | |
| 9803 | 59 $(BLD)\ctags.exe: $(BLD)\etags.exe |
| 60 copy $(BLD)\etags.exe $(BLD)\ctags.exe | |
| 11939 | 61 $(BLD)\wakeup.exe: $(BLD)\wakeup.obj $(BLD)\ntlib.obj |
| 9803 | 62 $(LINK) -out:$@ $(LINK_FLAGS) $(BLD)\wakeup.obj $(BLD)\ntlib.obj $(LIBS) |
| 63 | |
| 64 make-docfile: $(BLD)\make-docfile.exe | |
| 65 wakeup: $(BLD)\wakeup.exe | |
| 66 etags: $(BLD)\etags.exe | |
| 67 hexl: $(BLD)\hexl.exe | |
| 68 | |
| 69 ETAGSOBJ = $(BLD)\etags.obj \ | |
| 70 $(BLD)\getopt.obj \ | |
| 71 $(BLD)\getopt1.obj \ | |
| 72 $(BLD)\ntlib.obj | |
| 73 | |
| 11939 | 74 $(BLD)\etags.exe: $(ETAGSOBJ) |
|
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
75 $(LINK) -out:$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS) |
| 9803 | 76 |
| 77 # | |
| 78 # don't know what to do with these yet... | |
| 79 # | |
| 80 # $(BLD)\sorted-doc.exe: $(LIBS) $(BLD)\sorted-doc.obj | |
| 81 # $(BLD)\yow.exe: $(LIBS) $(BLD)\yow.obj | |
| 82 # $(BLD)\emacstool.exe: $(LIBS) $(BLD)\emacstool.obj | |
| 83 # $(BLD)\env.exe: $(LIBS) $(BLD)\env.obj | |
| 84 # $(BLD)\fakemail.exe: $(LIBS) $(BLD)\fakemail.obj | |
| 85 # $(BLD)\leditcfns.exe: $(LIBS) $(BLD)\leditcfns.obj | |
| 86 # $(BLD)\server.exe: $(LIBS) $(BLD)\server.obj | |
| 87 # $(BLD)\wakeup.exe: $(LIBS) $(BLD)\wakeup.obj | |
| 88 # $(BLD)\movemail.exe: $(LIBS) $(BLD)\movemail.obj | |
| 89 # $(BLD)\cvtmail.exe: $(LIBS) $(BLD)\cvtmail.obj | |
| 90 # $(BLD)\digest-doc.exe: $(LIBS) $(BLD)\digest-doc.obj | |
| 91 # $(BLD)\emacsclient.exe: $(LIBS) $(BLD)\emacsclient.obj | |
| 92 # $(BLD)\qsort.exe: $(LIBS) $(BLD)\qsort.obj | |
| 93 # $(BLD)\test-distrib.exe: $(LIBS) $(BLD)\test-distrib.obj | |
| 94 | |
| 95 # | |
| 11939 | 96 # From ..\src\makefile.nt. |
| 9803 | 97 # |
|
13429
a90a9820c5f6
(DOC): Include strings from w32term.c, w32xfns.c,
Geoff Voelker <voelker@cs.washington.edu>
parents:
12241
diff
changeset
|
98 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 | 99 |
| 100 lispdir = ..\lisp | |
| 101 | |
| 102 # | |
| 103 # These are the lisp files that are loaded up in loadup.el | |
| 104 # | |
| 105 lisp= \ | |
| 106 $(lispdir)\subr.elc \ | |
| 107 $(lispdir)\byte-run.elc \ | |
| 108 $(lispdir)\map-ynp.elc \ | |
| 109 $(lispdir)\loaddefs.el \ | |
| 110 $(lispdir)\simple.elc \ | |
| 111 $(lispdir)\help.elc \ | |
| 112 $(lispdir)\files.elc \ | |
|
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
113 $(lispdir)\format.elc \ |
| 9803 | 114 $(lispdir)\indent.elc \ |
| 115 $(lispdir)\window.elc \ | |
| 116 $(lispdir)\frame.elc \ | |
| 117 $(lispdir)\mouse.elc \ | |
| 118 $(lispdir)\menu-bar.elc \ | |
| 119 $(lispdir)\scroll-bar.elc \ | |
| 120 $(lispdir)\select.elc \ | |
| 121 $(lispdir)\paths.el \ | |
| 122 $(lispdir)\startup.elc \ | |
| 123 $(lispdir)\lisp.elc \ | |
| 124 $(lispdir)\page.elc \ | |
| 125 $(lispdir)\register.elc \ | |
| 126 $(lispdir)\paragraphs.elc \ | |
| 127 $(lispdir)\lisp-mode.elc \ | |
| 128 $(lispdir)\text-mode.elc \ | |
| 129 $(lispdir)\fill.elc \ | |
| 130 $(lispdir)\c-mode.elc \ | |
| 131 $(lispdir)\isearch.elc \ | |
| 132 $(lispdir)\replace.elc \ | |
| 133 $(lispdir)\abbrev.elc \ | |
| 134 $(lispdir)\buff-menu.elc \ | |
|
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
135 $(lispdir)\ls-lisp.elc \ |
| 9803 | 136 $(lispdir)\winnt.elc \ |
| 137 $(lispdir)\float-sup.elc \ | |
| 138 $(lispdir)\vc-hooks.elc \ | |
| 139 $(lispdir)\version.el | |
| 140 | |
| 141 DOC = DOC | |
| 142 $(DOC): $(BLD)\make-docfile.exe | |
|
13631
abb8f19ece25
(DOC, clean): Don't use switches to del not supported by Win95.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13429
diff
changeset
|
143 - del $(DOC) |
| 9803 | 144 $(BLD)\make-docfile -d ..\src $(obj) > $(DOC) |
| 145 $(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
|
146 $(CP) $(DOC) ..\etc\DOC-X |
| 9803 | 147 - mkdir ..\src\$(OBJDIR) |
| 148 - mkdir ..\src\$(OBJDIR)\etc | |
|
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
149 $(CP) $(DOC) ..\src\$(OBJDIR)\etc\DOC-X |
| 9803 | 150 |
| 151 {$(BLD)}.obj{$(BLD)}.exe: | |
| 152 $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) | |
| 153 | |
| 154 .c{$(BLD)}.obj: | |
| 155 $(CC) $(CFLAGS) -Fo$@ $< | |
| 156 | |
| 157 # | |
| 158 # Build the executables | |
| 159 # | |
| 160 all: $(BLD) $(ALL) $(DOC) | |
| 161 | |
| 162 # | |
| 163 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
| 164 # | |
| 165 INSTALL_FILES = $(ALL) | |
| 166 install: $(INSTALL_FILES) | |
| 167 - mkdir $(INSTALL_DIR)\bin | |
| 168 $(CP) $(BLD)\etags.exe $(INSTALL_DIR)\bin | |
| 169 $(CP) $(BLD)\ctags.exe $(INSTALL_DIR)\bin | |
| 170 $(CP) $(BLD)\hexl.exe $(INSTALL_DIR)\bin | |
|
12241
f92938c6b7c9
(install): Copy wakeup.exe properly.
Richard M. Stallman <rms@gnu.org>
parents:
11939
diff
changeset
|
171 $(CP) $(BLD)\wakeup.exe $(INSTALL_DIR)\bin |
| 9803 | 172 - mkdir $(INSTALL_DIR)\etc |
| 173 $(CP) $(DOC) $(INSTALL_DIR)\etc | |
| 174 | |
| 175 # | |
| 176 # Maintenance | |
| 177 # | |
|
13631
abb8f19ece25
(DOC, clean): Don't use switches to del not supported by Win95.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13429
diff
changeset
|
178 clean:; - del *~ *.pdb |
|
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
179 - $(DEL_TREE) deleted |
|
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
180 - $(DEL_TREE) obj |
|
13631
abb8f19ece25
(DOC, clean): Don't use switches to del not supported by Win95.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13429
diff
changeset
|
181 - del DOC* |
| 9803 | 182 |
| 183 # | |
| 184 # Headers we would preprocess if we could. | |
| 185 # | |
| 11939 | 186 ..\src\config.h: ..\nt\$(CONFIG_H) |
| 187 $(CP) $** $@ | |
|
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
188 ..\src\paths.h: ..\nt\paths.h |
| 11939 | 189 $(CP) $** $@ |
| 9803 | 190 |
| 191 ### DEPENDENCIES ### | |
| 192 | |
| 193 EMACS_ROOT = .. | |
| 194 SRC = . | |
| 195 | |
| 196 $(BLD)\alloca.obj : \ | |
| 197 $(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
|
198 $(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
|
199 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 200 $(EMACS_ROOT)\src\config.h \ |
| 201 $(EMACS_ROOT)\src\blockinput.h | |
| 202 | |
| 203 $(BLD)\b2m.obj : \ | |
| 204 $(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
|
205 $(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
|
206 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 207 $(EMACS_ROOT)\lib-src\..\src\config.h |
| 208 | |
| 209 $(BLD)\cvtmail.obj : \ | |
| 210 $(SRC)\cvtmail.c | |
| 211 | |
| 212 $(BLD)\digest-doc.obj : \ | |
| 213 $(SRC)\digest-doc.c | |
| 214 | |
| 215 $(BLD)\emacsclient.obj : \ | |
| 216 $(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
|
217 $(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
|
218 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 219 $(EMACS_ROOT)\lib-src\..\src\config.h |
| 220 | |
| 221 $(BLD)\emacsserver.obj : \ | |
| 222 $(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
|
223 $(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
|
224 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 225 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
| 226 $(EMACS_ROOT)\nt\inc\sys\file.h | |
| 227 | |
| 228 $(BLD)\emacstool.obj : \ | |
| 229 $(SRC)\emacstool.c \ | |
| 230 $(EMACS_ROOT)\nt\inc\sys\file.h | |
| 231 | |
| 232 $(BLD)\etags.obj : \ | |
| 233 $(SRC)\etags.c \ | |
| 234 $(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
|
235 $(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
|
236 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 237 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
| 238 $(SRC)\getopt.h | |
| 239 | |
| 240 $(BLD)\fakemail.obj : \ | |
| 241 $(SRC)\fakemail.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
|
242 $(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
|
243 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 244 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
| 245 $(EMACS_ROOT)\nt\inc\pwd.h | |
| 246 | |
| 247 $(BLD)\getdate.obj : \ | |
| 248 $(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
|
249 $(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
|
250 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 251 $(EMACS_ROOT)\src\config.h \ |
| 252 $(MSTOOLS_SYS)\types.h | |
| 253 | |
| 254 $(BLD)\getopt.obj : \ | |
| 255 $(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
|
256 $(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
|
257 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 258 $(EMACS_ROOT)\src\config.h \ |
| 259 $(SRC)\getopt.h | |
| 260 | |
| 261 $(BLD)\getopt1.obj : \ | |
| 262 $(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
|
263 $(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
|
264 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 265 $(EMACS_ROOT)\src\config.h \ |
| 266 $(SRC)\getopt.h | |
| 267 | |
| 268 $(BLD)\hexl.obj : \ | |
| 269 $(SRC)\hexl.c | |
| 270 | |
| 271 $(BLD)\leditcfns.obj : \ | |
| 272 $(SRC)\leditcfns.c | |
| 273 | |
| 274 $(BLD)\make-docfile.obj : \ | |
| 11939 | 275 $(SRC)\make-docfile.c \ |
| 276 $(EMACS_ROOT)\src\config.h | |
| 9803 | 277 |
| 278 $(BLD)\make-path.obj : \ | |
| 279 $(SRC)\make-path.c | |
| 280 | |
| 281 $(BLD)\movemail.obj : \ | |
| 282 $(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
|
283 $(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
|
284 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 285 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
| 286 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 287 $(EMACS_ROOT)\src\vmsproc.h \ | |
| 288 $(EMACS_ROOT)\lib-src\..\src\syswait.h \ | |
| 289 $(EMACS_ROOT)\nt\inc\pwd.h | |
| 290 | |
| 291 $(BLD)\profile.obj : \ | |
| 292 $(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
|
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)\lib-src\..\src\config.h \ |
| 296 $(EMACS_ROOT)\src\vmstime.h \ | |
| 297 $(EMACS_ROOT)\lib-src\..\src\systime.h | |
| 298 | |
| 299 $(BLD)\qsort.obj : \ | |
| 300 $(SRC)\qsort.c | |
| 301 | |
| 302 $(BLD)\sorted-doc.obj : \ | |
| 303 $(SRC)\sorted-doc.c | |
| 304 | |
| 305 $(BLD)\tcp.obj : \ | |
| 306 $(SRC)\tcp.c | |
| 307 | |
| 308 $(BLD)\test-distrib.obj : \ | |
| 309 $(SRC)\test-distrib.c | |
| 310 | |
| 311 $(BLD)\timer.obj : \ | |
| 312 $(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
|
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 | |
| 317 $(BLD)\wakeup.obj : \ | |
| 318 $(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
|
319 $(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
|
320 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 321 $(EMACS_ROOT)\src\config.h |
| 322 | |
| 323 $(BLD)\yow.obj : \ | |
| 324 $(SRC)\yow.c \ | |
| 325 $(EMACS_ROOT)\lib-src\..\src\paths.h |
