Mercurial > emacs
annotate src/makefile.nt @ 24143:fb22a9461d00
Add w32bdf.c and w32bdf.h.
| author | Geoff Voelker <voelker@cs.washington.edu> |
|---|---|
| date | Fri, 22 Jan 1999 19:58:01 +0000 |
| parents | daa5a963e82a |
| children | da51e8d5c359 |
| rev | line source |
|---|---|
|
16888
380c7e461c14
Use new name w32gui.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1 # Makefile for GNU Emacs on the Microsoft W32 API. |
| 11383 | 2 # Copyright (c) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. |
| 3 # Tim Fleehart (apollo@online.com) 17-Apr-92 | |
| 4 # Geoff Voelker (voelker@cs.washington.edu) 11-20-93 | |
| 9803 | 5 # |
| 6 # This file is part of GNU Emacs. | |
| 7 # | |
| 8 # GNU Emacs is free software; you can redistribute it and/or modify | |
| 9 # it under the terms of the GNU General Public License as published by | |
| 10 # the Free Software Foundation; either version 2, or (at your option) | |
| 11 # any later version. | |
| 12 # | |
| 13 # GNU Emacs is distributed in the hope that it will be useful, | |
| 14 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 # GNU General Public License for more details. | |
| 17 # | |
| 18 # You should have received a copy of the GNU General Public License | |
| 15742 | 19 # along with GNU Emacs; see the file COPYING. If not, write to the |
| 20 # Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 21 # Boston, MA 02111-1307, USA. | |
| 9803 | 22 # |
| 23 | |
| 24 # | |
| 25 # Sets up the system dependent macros. | |
| 26 # | |
| 27 !include ..\nt\makefile.def | |
| 28 | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
29 SUBSYSTEM=console |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
30 |
| 9803 | 31 # |
| 32 # HAVE_CONFIG_H is required by some generic gnu sources stuck into | |
| 33 # the emacs source tree. | |
| 34 # | |
| 11383 | 35 LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I..\nt\inc |
|
22313
7139cd22a2f7
(LOCAL_FLAGS): Define HAVE_NTGUI if appropriate.
Andrew Innes <andrewi@gnu.org>
parents:
21890
diff
changeset
|
36 !ifdef NTGUI |
|
7139cd22a2f7
(LOCAL_FLAGS): Define HAVE_NTGUI if appropriate.
Andrew Innes <andrewi@gnu.org>
parents:
21890
diff
changeset
|
37 LOCAL_FLAGS = $(LOCAL_FLAGS) -DHAVE_NTGUI=1 |
|
7139cd22a2f7
(LOCAL_FLAGS): Define HAVE_NTGUI if appropriate.
Andrew Innes <andrewi@gnu.org>
parents:
21890
diff
changeset
|
38 !endif |
| 9803 | 39 |
| 40 EMACS = $(BLD)\emacs.exe | |
| 41 TEMACS = $(BLD)\temacs.exe | |
| 24100 | 42 TEMACS_TMP = $(BLD)\temacs.bin |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
43 TLIB0 = $(BLD)\temacs0.lib |
| 11742 | 44 TLIB1 = $(BLD)\temacs1.lib |
| 45 TLIB2 = $(BLD)\temacs2.lib | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
46 !IFDEF NTGUI |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
47 TLIBW32 = $(BLD)\temacw32.lib |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
48 !ELSE |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
49 TLIBW32 = |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
50 !ENDIF |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
51 TOBJ = $(BLD)\firstfile.obj |
|
12240
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
52 !if $(MSVCNT11) |
|
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
53 TRES = $(BLD)\emacs.res |
|
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
54 !else |
| 11742 | 55 TRES = $(BLD)\emacs.rbj |
|
12240
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
56 !endif |
|
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
57 TLASTLIB = $(BLD)\lastfile.lib |
| 9803 | 58 |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
59 # see comments in allocate_heap in w32heap.c before changing any of the |
|
15140
f13ffba51542
(SUBSYSTEM) [NTGUI]: Remove conditional.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
60 # -stack, -heap, or -base settings. |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
61 !if "$(BUILD_TYPE)" == "spd" |
|
22434
e283153313b6
(LINK_FLAGS): Place debug info in executable in
Geoff Voelker <voelker@cs.washington.edu>
parents:
22313
diff
changeset
|
62 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
63 !else |
|
22434
e283153313b6
(LINK_FLAGS): Place debug info in executable in
Geoff Voelker <voelker@cs.washington.edu>
parents:
22313
diff
changeset
|
64 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -pdb:none -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
65 !endif |
| 9803 | 66 |
| 67 # | |
| 68 # Split up the objects into two sets so that we don't run out of | |
| 69 # command line space when we link them into a library. | |
| 70 # | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
71 # Put emacs.obj in a separate lib, since we need to have firstfile.obj |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
72 # as the "main" object file when linking. |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
73 # |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
74 OBJ0 = $(BLD)\emacs.obj |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
75 |
| 9803 | 76 OBJ1 = $(BLD)\abbrev.obj \ |
| 77 $(BLD)\alloc.obj \ | |
| 78 $(BLD)\alloca.obj \ | |
| 79 $(BLD)\buffer.obj \ | |
| 80 $(BLD)\bytecode.obj \ | |
| 81 $(BLD)\callint.obj \ | |
| 82 $(BLD)\callproc.obj \ | |
| 83 $(BLD)\casefiddle.obj \ | |
| 84 $(BLD)\cm.obj \ | |
| 85 $(BLD)\cmds.obj \ | |
| 86 $(BLD)\data.obj \ | |
| 87 $(BLD)\dired.obj \ | |
| 88 $(BLD)\dispnew.obj \ | |
| 89 $(BLD)\doc.obj \ | |
| 90 $(BLD)\doprnt.obj \ | |
| 91 $(BLD)\editfns.obj \ | |
| 92 $(BLD)\eval.obj \ | |
| 93 $(BLD)\fileio.obj \ | |
| 94 $(BLD)\filelock.obj \ | |
| 95 $(BLD)\filemode.obj \ | |
| 96 $(BLD)\fns.obj \ | |
| 97 $(BLD)\indent.obj \ | |
| 98 $(BLD)\insdel.obj \ | |
| 99 $(BLD)\keyboard.obj \ | |
| 100 $(BLD)\keymap.obj \ | |
| 101 $(BLD)\lread.obj \ | |
| 102 $(BLD)\macros.obj \ | |
| 103 $(BLD)\marker.obj \ | |
| 104 $(BLD)\minibuf.obj \ | |
| 105 $(BLD)\mocklisp.obj | |
| 106 | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
107 OBJ2 = $(BLD)\w32.obj \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
108 $(BLD)\w32heap.obj \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
109 $(BLD)\w32inevt.obj \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
110 $(BLD)\w32proc.obj \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
111 $(BLD)\w32console.obj \ |
| 9803 | 112 $(BLD)\print.obj \ |
| 113 $(BLD)\process.obj \ | |
| 114 $(BLD)\regex.obj \ | |
| 115 $(BLD)\scroll.obj \ | |
| 116 $(BLD)\search.obj \ | |
| 117 $(BLD)\syntax.obj \ | |
| 118 $(BLD)\sysdep.obj \ | |
| 119 $(BLD)\term.obj \ | |
| 120 $(BLD)\termcap.obj \ | |
| 121 $(BLD)\tparam.obj \ | |
| 122 $(BLD)\undo.obj \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
123 $(BLD)\unexw32.obj \ |
| 9803 | 124 $(BLD)\window.obj \ |
| 125 $(BLD)\xdisp.obj \ | |
| 126 $(BLD)\casetab.obj \ | |
| 127 $(BLD)\floatfns.obj \ | |
| 128 $(BLD)\frame.obj \ | |
| 129 $(BLD)\gmalloc.obj \ | |
| 130 $(BLD)\intervals.obj \ | |
| 131 $(BLD)\ralloc.obj \ | |
| 132 $(BLD)\textprop.obj \ | |
| 11383 | 133 $(BLD)\vm-limit.obj \ |
| 134 $(BLD)\region-cache.obj \ | |
|
18505
ca4d948da78d
(OBJ2): Include new source files.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16888
diff
changeset
|
135 $(BLD)\strftime.obj \ |
|
ca4d948da78d
(OBJ2): Include new source files.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16888
diff
changeset
|
136 $(BLD)\charset.obj \ |
|
ca4d948da78d
(OBJ2): Include new source files.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16888
diff
changeset
|
137 $(BLD)\coding.obj \ |
|
ca4d948da78d
(OBJ2): Include new source files.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16888
diff
changeset
|
138 $(BLD)\category.obj \ |
|
ca4d948da78d
(OBJ2): Include new source files.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16888
diff
changeset
|
139 $(BLD)\ccl.obj \ |
|
ca4d948da78d
(OBJ2): Include new source files.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16888
diff
changeset
|
140 $(BLD)\fontset.obj |
| 9803 | 141 |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
142 WIN32OBJ = $(BLD)\w32term.obj \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
143 $(BLD)\w32xfns.obj \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
144 $(BLD)\w32fns.obj \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
145 $(BLD)\w32faces.obj \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
146 $(BLD)\w32select.obj \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
147 $(BLD)\w32menu.obj \ |
|
24143
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
148 $(BLD)\w32reg.obj \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
149 $(BLD)\w32bdf.obj |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
150 |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
151 LIBS = $(TLIB0) \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
152 $(TLIB1) \ |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
153 $(TLIB2) \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
154 !IFDEF NTGUI |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
155 $(TLIBW32) \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
156 !ENDIF |
|
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
157 $(TLASTLIB) \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
158 !IFDEF NTGUI |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
159 gdi32.lib \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
160 comdlg32.lib \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
161 !ENDIF |
|
15140
f13ffba51542
(SUBSYSTEM) [NTGUI]: Remove conditional.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
162 # libcmt.lib \ |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
163 $(BASE_LIBS) \ |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
164 $(ADVAPI32) \ |
|
14247
63cada85e5fd
(keyboard.obj, dispnew.obj): Depend upon w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13829
diff
changeset
|
165 user32.lib \ |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
166 mpr.lib \ |
|
21890
f28b2d5e921b
(LIBS): Link in shell32.lib.
Richard M. Stallman <rms@gnu.org>
parents:
21602
diff
changeset
|
167 shell32.lib \ |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
168 setargv.obj |
| 9803 | 169 |
| 170 # | |
| 171 # Build the executable and dump it. | |
| 172 # | |
| 173 all: $(BLD) $(EMACS) | |
| 174 | |
| 175 # | |
| 176 # Headers we would preprocess if we could. | |
| 177 # | |
| 178 PREPARED_HEADERS = config.h paths.h | |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
179 config.h: ..\nt\$(CONFIG_H) |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
180 $(CP) $** $@ |
| 11383 | 181 paths.h: ..\nt\paths.h |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
182 $(CP) $** $@ |
| 11383 | 183 |
| 184 # | |
| 185 # Make sure we have the DOC file in the right place. | |
| 186 # | |
|
15721
6d54ca02c76d
(DOC, clean): Use OBJDIR macro.
Karl Heuer <kwzh@gnu.org>
parents:
15238
diff
changeset
|
187 DOC = $(OBJDIR)\etc\DOC-X |
| 11383 | 188 $(DOC):; cd ..\lib-src |
|
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
14247
diff
changeset
|
189 - $(DEL) DOC-X |
| 11383 | 190 $(MAKE) -f makefile.nt all |
| 191 cd ..\src | |
| 9803 | 192 |
| 193 # | |
| 194 # The dumped executable | |
| 195 # | |
| 196 emacs: $(EMACS) | |
| 11383 | 197 $(EMACS): $(PREPARED_HEADERS) $(DOC) $(TEMACS) |
| 9803 | 198 cd $(BLD) |
| 199 temacs.exe -batch -l loadup dump | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
200 copy temacs.map emacs.map |
| 9803 | 201 cd ..\.. |
| 202 | |
| 203 # | |
| 204 # The undumped executable | |
| 24100 | 205 # Note the extra post-link step to insert a static preload heap section. |
| 206 # If preload runs out of memory, increase the last argument to addsection | |
| 207 # (it is the preload heap size in MB). | |
| 9803 | 208 # |
|
12178
fc00a306b890
(TEMACS): Depend upon $(BLD).
Geoff Voelker <voelker@cs.washington.edu>
parents:
11940
diff
changeset
|
209 temacs: $(BLD) $(TEMACS) |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
210 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIB2) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) |
| 24100 | 211 $(LINK) -out:$(TEMACS_TMP) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS) |
| 212 ..\nt\$(BLD)\addsection $(TEMACS_TMP) $(TEMACS) EMHEAP 16 | |
|
24135
daa5a963e82a
(temacs): Use del to delete file, not rm.
Andrew Innes <andrewi@gnu.org>
parents:
24100
diff
changeset
|
213 del $(TEMACS_TMP) |
| 11742 | 214 |
| 215 # | |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
216 # The resource file. NT 3.10 requires the use of cvtres; even though |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
217 # it is not necessary on later versions, it is still ok to use it. |
| 11742 | 218 # |
| 219 $(TRES): ..\nt\emacs.rc | |
| 220 $(RC) -i..\nt -Fo$(BLD)\emacs.res $** | |
|
12240
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
221 !if !$(MSVCNT11) |
| 11742 | 222 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res |
|
12240
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
223 !endif |
| 9803 | 224 |
| 225 # | |
| 226 # Build the library. Split up the build into two phases...otherwise we | |
| 227 # run out of command line space. | |
| 228 # | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
229 $(TLIB0): $(OBJ0) |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
230 @- $(AR) -out:$@ $** |
| 11742 | 231 $(TLIB1): $(OBJ1) |
| 232 @- $(AR) -out:$@ $** | |
| 233 $(TLIB2): $(OBJ2) | |
| 234 @- $(AR) -out:$@ $** | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
235 !IFDEF NTGUI |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
236 $(TLIBW32): $(WIN32OBJ) |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
237 @- $(AR) -out:$@ $** |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
238 !ENDIF |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
239 |
|
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
240 # |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
241 # Place lastfile.obj in its own library so that it can be loaded after |
|
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
242 # the source libraries but before any system libraries. Doing so defines |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
243 # the end of Emacs' data section portably across compilers and systems. |
|
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
244 # |
|
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
245 $(TLASTLIB): $(BLD)\lastfile.obj |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
246 @- $(AR) -out:$@ $** |
| 9803 | 247 |
| 248 # | |
| 249 # Object files. | |
| 250 # | |
|
23834
ce563c147515
Do string comparision of _NMAKE_VER.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23680
diff
changeset
|
251 !IF ($(_NMAKE_VER) == $(_NMAKE_VER_4)) |
| 9803 | 252 .c{$(BLD)}.obj: |
|
23626
9e10a92252d9
Compile multiple source files when possible.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23504
diff
changeset
|
253 $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< |
|
9e10a92252d9
Compile multiple source files when possible.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23504
diff
changeset
|
254 !ELSE |
|
9e10a92252d9
Compile multiple source files when possible.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23504
diff
changeset
|
255 .c{$(BLD)}.obj:: |
|
9e10a92252d9
Compile multiple source files when possible.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23504
diff
changeset
|
256 $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< |
|
9e10a92252d9
Compile multiple source files when possible.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23504
diff
changeset
|
257 !ENDIF |
| 9803 | 258 |
| 259 # | |
| 260 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
| 261 # | |
| 262 install: all | |
| 263 - mkdir $(INSTALL_DIR)\bin | |
| 264 $(CP) $(EMACS) $(INSTALL_DIR)\bin | |
| 265 | |
| 266 # | |
| 267 # Maintenance | |
| 268 # | |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
269 clean:; - $(DEL) *~ s\*~ |
|
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
270 - $(DEL) *.pdb config.h paths.h |
|
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
271 - $(DEL) *.orig *.rej *.crlf |
|
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
272 - $(DEL) s\*.orig s\*.rej s\*.crlf |
| 11383 | 273 - $(DEL_TREE) deleted |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
274 - $(DEL_TREE) obj |
|
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
275 - $(DEL_TREE) obj-spd |
| 9803 | 276 |
| 277 # | |
| 278 # These files are the ones that compile conditionally on CANNOT_DUMP... | |
| 279 # this target is mostly used for debugging. | |
| 280 # | |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
281 cleandump:; cd $(BLD) |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
282 - $(DEL) callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj w32heap.obj unexw32.obj |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
283 cd ..\.. |
| 9803 | 284 |
| 285 | |
| 286 ### DEPENDENCIES ### | |
| 287 | |
| 288 EMACS_ROOT = .. | |
| 289 SRC = . | |
| 290 | |
| 291 $(BLD)\abbrev.obj : \ | |
| 292 $(SRC)\abbrev.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
293 $(EMACS_ROOT)\src\s\ms-w32.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
|
294 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 295 $(EMACS_ROOT)\src\config.h \ |
| 296 $(SRC)\lisp.h \ | |
| 297 $(SRC)\commands.h \ | |
| 298 $(SRC)\buffer.h \ | |
| 299 $(SRC)\window.h | |
| 300 | |
| 301 $(BLD)\alloc.obj : \ | |
| 302 $(SRC)\alloc.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
303 $(EMACS_ROOT)\src\s\ms-w32.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
|
304 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 305 $(EMACS_ROOT)\src\config.h \ |
| 306 $(SRC)\lisp.h \ | |
| 307 $(SRC)\dispextern.h \ | |
| 308 $(SRC)\intervals.h \ | |
| 309 $(SRC)\puresize.h \ | |
| 310 $(SRC)\buffer.h \ | |
| 311 $(SRC)\window.h \ | |
| 312 $(SRC)\frame.h \ | |
| 313 $(SRC)\blockinput.h \ | |
| 314 $(SRC)\syssignal.h | |
| 315 | |
| 316 $(BLD)\alloca.obj : \ | |
| 317 $(SRC)\alloca.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
318 $(EMACS_ROOT)\src\s\ms-w32.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
|
319 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 320 $(EMACS_ROOT)\src\config.h \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
321 $(SRC)\s\ms-w32.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
|
322 $(SRC)\m\intel386.h \ |
| 9803 | 323 $(SRC)\config.h \ |
| 324 $(SRC)\blockinput.h | |
| 325 | |
| 326 $(BLD)\buffer.obj : \ | |
| 327 $(SRC)\buffer.c \ | |
| 328 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
329 $(EMACS_ROOT)\src\s\ms-w32.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
|
330 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 331 $(EMACS_ROOT)\src\config.h \ |
| 332 $(SRC)\lisp.h \ | |
| 333 $(SRC)\dispextern.h \ | |
| 334 $(SRC)\intervals.h \ | |
| 335 $(SRC)\window.h \ | |
| 336 $(SRC)\commands.h \ | |
| 337 $(SRC)\buffer.h \ | |
| 338 $(SRC)\indent.h \ | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
339 $(SRC)\blockinput.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
340 $(SRC)\region-cache.h |
| 9803 | 341 |
| 342 $(BLD)\bytecode.obj : \ | |
| 343 $(SRC)\bytecode.c \ | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
344 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
345 $(EMACS_ROOT)\src\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
346 $(EMACS_ROOT)\src\config.h \ |
| 9803 | 347 $(SRC)\lisp.h \ |
| 348 $(SRC)\buffer.h \ | |
| 349 $(SRC)\syntax.h | |
| 350 | |
| 351 $(BLD)\callint.obj : \ | |
| 352 $(SRC)\callint.c \ | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
353 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
354 $(EMACS_ROOT)\src\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
355 $(EMACS_ROOT)\src\config.h \ |
| 9803 | 356 $(SRC)\lisp.h \ |
| 357 $(SRC)\buffer.h \ | |
| 358 $(SRC)\commands.h \ | |
| 359 $(SRC)\keyboard.h \ | |
| 360 $(SRC)\window.h \ | |
| 361 $(SRC)\mocklisp.h | |
| 362 | |
| 363 $(BLD)\callproc.obj : \ | |
| 364 $(SRC)\callproc.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
365 $(EMACS_ROOT)\src\s\ms-w32.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
|
366 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 367 $(EMACS_ROOT)\src\config.h \ |
| 368 $(SRC)\msdos.h \ | |
| 369 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 370 $(SRC)\lisp.h \ | |
| 371 $(SRC)\commands.h \ | |
| 372 $(SRC)\buffer.h \ | |
| 373 $(SRC)\process.h \ | |
| 374 $(SRC)\syssignal.h \ | |
| 375 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 376 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 377 $(SRC)\systty.h | |
| 378 | |
| 379 $(BLD)\casefiddle.obj : \ | |
| 380 $(SRC)\casefiddle.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
381 $(EMACS_ROOT)\src\s\ms-w32.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
|
382 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 383 $(EMACS_ROOT)\src\config.h \ |
| 384 $(SRC)\lisp.h \ | |
| 385 $(SRC)\buffer.h \ | |
| 386 $(SRC)\commands.h \ | |
| 387 $(SRC)\syntax.h | |
| 388 $(CC) $(CFLAGS) -Fo$@ casefiddle.c | |
| 389 | |
| 390 $(BLD)\casetab.obj : \ | |
| 391 $(SRC)\casetab.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
392 $(EMACS_ROOT)\src\s\ms-w32.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
|
393 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 394 $(EMACS_ROOT)\src\config.h \ |
| 395 $(SRC)\lisp.h \ | |
| 396 $(SRC)\buffer.h | |
| 397 | |
| 398 $(BLD)\cm.obj : \ | |
| 399 $(SRC)\cm.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
400 $(EMACS_ROOT)\src\s\ms-w32.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
|
401 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 402 $(EMACS_ROOT)\src\config.h \ |
| 403 $(SRC)\cm.h \ | |
| 404 $(SRC)\termhooks.h | |
| 405 | |
| 406 $(BLD)\cmds.obj : \ | |
| 407 $(SRC)\cmds.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
408 $(EMACS_ROOT)\src\s\ms-w32.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
|
409 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 410 $(EMACS_ROOT)\src\config.h \ |
| 411 $(SRC)\lisp.h \ | |
| 412 $(SRC)\commands.h \ | |
| 413 $(SRC)\buffer.h \ | |
| 414 $(SRC)\syntax.h | |
| 415 | |
| 416 $(BLD)\data.obj : \ | |
| 417 $(SRC)\data.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
418 $(EMACS_ROOT)\src\s\ms-w32.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
|
419 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 420 $(EMACS_ROOT)\src\config.h \ |
| 421 $(SRC)\lisp.h \ | |
| 422 $(SRC)\puresize.h \ | |
| 423 $(SRC)\buffer.h \ | |
| 424 $(SRC)\syssignal.h | |
| 425 | |
| 426 $(BLD)\dired.obj : \ | |
| 427 $(SRC)\dired.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
428 $(EMACS_ROOT)\src\s\ms-w32.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
|
429 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 430 $(EMACS_ROOT)\src\config.h \ |
| 431 $(SRC)\vmsdir.h \ | |
| 432 $(SRC)\ndir.h \ | |
| 433 $(SRC)\lisp.h \ | |
| 434 $(SRC)\buffer.h \ | |
| 435 $(SRC)\commands.h \ | |
| 436 $(SRC)\regex.h | |
| 437 | |
| 438 $(BLD)\dispnew.obj : \ | |
| 439 $(SRC)\dispnew.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
440 $(EMACS_ROOT)\src\s\ms-w32.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
|
441 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 442 $(EMACS_ROOT)\src\config.h \ |
| 443 $(SRC)\lisp.h \ | |
| 444 $(SRC)\termchar.h \ | |
| 445 $(SRC)\termopts.h \ | |
| 446 $(SRC)\termhooks.h \ | |
| 447 $(SRC)\cm.h \ | |
| 448 $(SRC)\buffer.h \ | |
| 449 $(SRC)\frame.h \ | |
| 450 $(SRC)\window.h \ | |
| 451 $(SRC)\commands.h \ | |
| 452 $(SRC)\disptab.h \ | |
| 453 $(SRC)\indent.h \ | |
| 454 $(SRC)\dispextern.h \ | |
| 455 $(SRC)\intervals.h \ | |
| 456 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 457 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 458 $(SRC)\systty.h \ | |
|
14247
63cada85e5fd
(keyboard.obj, dispnew.obj): Depend upon w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13829
diff
changeset
|
459 $(SRC)\w32term.h \ |
| 9803 | 460 $(SRC)\xterm.h \ |
| 461 $(SRC)\vmstime.h \ | |
| 462 $(SRC)\systime.h | |
| 463 | |
| 464 $(BLD)\doc.obj : \ | |
| 465 $(SRC)\doc.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
466 $(EMACS_ROOT)\src\s\ms-w32.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
|
467 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 468 $(EMACS_ROOT)\src\config.h \ |
| 469 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 470 $(SRC)\lisp.h \ | |
| 471 $(SRC)\buffer.h \ | |
| 472 $(SRC)\keyboard.h | |
| 473 | |
| 474 $(BLD)\doprnt.obj : \ | |
| 475 $(SRC)\doprnt.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
476 $(EMACS_ROOT)\src\s\ms-w32.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
|
477 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 478 $(EMACS_ROOT)\src\config.h |
| 479 | |
| 480 $(BLD)\dosfns.obj : \ | |
| 481 $(SRC)\dosfns.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
482 $(EMACS_ROOT)\src\s\ms-w32.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
|
483 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 484 $(EMACS_ROOT)\src\config.h \ |
| 485 $(SRC)\lisp.h \ | |
| 486 $(SRC)\buffer.h \ | |
| 487 $(SRC)\termchar.h \ | |
| 488 $(SRC)\termhooks.h \ | |
| 489 $(SRC)\frame.h \ | |
| 490 $(SRC)\dosfns.h \ | |
| 491 $(SRC)\msdos.h | |
| 492 | |
| 493 $(BLD)\editfns.obj : \ | |
| 494 $(SRC)\editfns.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
495 $(EMACS_ROOT)\src\s\ms-w32.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
|
496 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 497 $(EMACS_ROOT)\src\config.h \ |
| 498 $(SRC)\uaf.h \ | |
| 499 $(SRC)\vms-pwd.h \ | |
| 500 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 501 $(SRC)\lisp.h \ | |
| 502 $(SRC)\dispextern.h \ | |
| 503 $(SRC)\intervals.h \ | |
| 504 $(SRC)\buffer.h \ | |
| 505 $(SRC)\window.h \ | |
| 506 $(SRC)\vmstime.h \ | |
| 507 $(SRC)\systime.h | |
| 508 | |
| 509 $(BLD)\emacs.obj : \ | |
| 510 $(SRC)\emacs.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
511 $(EMACS_ROOT)\src\s\ms-w32.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
|
512 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 513 $(EMACS_ROOT)\src\config.h \ |
| 514 $(SRC)\lisp.h \ | |
| 515 $(SRC)\commands.h \ | |
| 516 $(SRC)\dispextern.h \ | |
| 517 $(SRC)\intervals.h \ | |
| 518 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 519 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 520 $(SRC)\systty.h \ | |
| 521 $(SRC)\syssignal.h \ | |
| 522 $(SRC)\process.h | |
| 523 | |
| 524 $(BLD)\eval.obj : \ | |
| 525 $(SRC)\eval.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
526 $(EMACS_ROOT)\src\s\ms-w32.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
|
527 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 528 $(EMACS_ROOT)\src\config.h \ |
| 529 $(SRC)\lisp.h \ | |
| 530 $(SRC)\blockinput.h \ | |
| 531 $(SRC)\commands.h \ | |
| 532 $(SRC)\keyboard.h | |
| 533 | |
| 534 $(BLD)\fileio.obj : \ | |
| 535 $(SRC)\fileio.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
536 $(EMACS_ROOT)\src\s\ms-w32.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
|
537 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 538 $(EMACS_ROOT)\src\config.h \ |
| 539 $(SRC)\uaf.h \ | |
| 540 $(SRC)\vms-pwd.h \ | |
| 541 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 542 $(SRC)\msdos.h \ | |
| 543 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 544 $(SRC)\vmsdir.h \ | |
| 545 $(SRC)\lisp.h \ | |
| 546 $(SRC)\dispextern.h \ | |
| 547 $(SRC)\intervals.h \ | |
| 548 $(SRC)\buffer.h \ | |
| 549 $(SRC)\window.h \ | |
| 550 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 551 $(SRC)\vmstime.h \ | |
| 552 $(SRC)\systime.h | |
| 553 | |
| 554 $(BLD)\filelock.obj : \ | |
| 555 $(SRC)\filelock.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
556 $(EMACS_ROOT)\src\s\ms-w32.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
|
557 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 558 $(EMACS_ROOT)\src\config.h \ |
| 559 $(SRC)\uaf.h \ | |
| 560 $(SRC)\vms-pwd.h \ | |
| 561 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 562 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 563 $(SRC)\lisp.h \ | |
| 564 $(EMACS_ROOT)\src\paths.h \ | |
| 565 $(SRC)\buffer.h \ | |
| 566 $(SRC)\vmsdir.h \ | |
| 567 $(SRC)\ndir.h | |
| 568 | |
| 569 $(BLD)\filemode.obj : \ | |
| 570 $(SRC)\filemode.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
571 $(EMACS_ROOT)\src\s\ms-w32.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
|
572 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 573 $(EMACS_ROOT)\src\config.h \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
574 $(SRC)\s\ms-w32.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
|
575 $(SRC)\m\intel386.h \ |
| 9803 | 576 $(SRC)\config.h |
| 577 | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
578 $(BLD)\firstfile.obj : \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
579 $(SRC)\firstfile.c \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
580 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
581 $(EMACS_ROOT)\src\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
582 $(EMACS_ROOT)\src\config.h |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
583 |
| 9803 | 584 $(BLD)\floatfns.obj : \ |
| 585 $(SRC)\floatfns.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
586 $(EMACS_ROOT)\src\s\ms-w32.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
|
587 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 588 $(EMACS_ROOT)\src\config.h \ |
| 589 $(SRC)\lisp.h \ | |
| 590 $(SRC)\syssignal.h | |
| 591 | |
| 592 $(BLD)\fns.obj : \ | |
| 593 $(SRC)\fns.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
594 $(EMACS_ROOT)\src\s\ms-w32.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
|
595 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 596 $(EMACS_ROOT)\src\config.h \ |
| 597 $(SRC)\lisp.h \ | |
| 598 $(SRC)\commands.h \ | |
| 599 $(SRC)\buffer.h \ | |
| 600 $(SRC)\keyboard.h \ | |
| 601 $(SRC)\dispextern.h \ | |
| 602 $(SRC)\intervals.h | |
| 603 | |
| 604 $(BLD)\frame.obj : \ | |
| 605 $(SRC)\frame.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
606 $(EMACS_ROOT)\src\s\ms-w32.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
|
607 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 608 $(EMACS_ROOT)\src\config.h \ |
| 609 $(SRC)\lisp.h \ | |
| 610 $(SRC)\frame.h \ | |
| 611 $(SRC)\termhooks.h \ | |
| 612 $(SRC)\window.h \ | |
| 613 $(SRC)\buffer.h \ | |
| 614 $(SRC)\commands.h \ | |
| 615 $(SRC)\keyboard.h | |
| 616 | |
| 617 $(BLD)\getloadavg.obj : \ | |
| 618 $(SRC)\getloadavg.c \ | |
| 619 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
620 $(EMACS_ROOT)\src\s\ms-w32.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
|
621 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 622 $(EMACS_ROOT)\src\config.h \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
623 $(SRC)\s\ms-w32.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
|
624 $(SRC)\m\intel386.h \ |
| 9803 | 625 $(SRC)\config.h \ |
| 626 $(EMACS_ROOT)\nt\inc\sys\file.h | |
| 627 | |
| 628 $(BLD)\gmalloc.obj : \ | |
| 629 $(SRC)\gmalloc.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
630 $(EMACS_ROOT)\src\s\ms-w32.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
|
631 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 632 $(EMACS_ROOT)\src\config.h \ |
| 633 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 634 $(SRC)\getpagesize.h | |
| 635 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c | |
| 636 | |
| 637 $(BLD)\hftctl.obj : \ | |
| 638 $(SRC)\hftctl.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
639 $(EMACS_ROOT)\src\s\ms-w32.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
|
640 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 641 $(EMACS_ROOT)\src\config.h \ |
| 642 $(EMACS_ROOT)\nt\inc\sys\ioctl.h | |
| 643 | |
| 644 $(BLD)\indent.obj : \ | |
| 645 $(SRC)\indent.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
646 $(EMACS_ROOT)\src\s\ms-w32.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
|
647 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 648 $(EMACS_ROOT)\src\config.h \ |
| 649 $(SRC)\lisp.h \ | |
| 650 $(SRC)\buffer.h \ | |
| 651 $(SRC)\indent.h \ | |
| 652 $(SRC)\frame.h \ | |
| 653 $(SRC)\window.h \ | |
| 654 $(SRC)\termchar.h \ | |
| 655 $(SRC)\termopts.h \ | |
| 656 $(SRC)\disptab.h \ | |
| 657 $(SRC)\dispextern.h \ | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
658 $(SRC)\intervals.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
659 $(SRC)\region-cache.h |
| 9803 | 660 |
| 661 $(BLD)\insdel.obj : \ | |
| 662 $(SRC)\insdel.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
663 $(EMACS_ROOT)\src\s\ms-w32.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
|
664 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 665 $(EMACS_ROOT)\src\config.h \ |
| 666 $(SRC)\lisp.h \ | |
| 667 $(SRC)\dispextern.h \ | |
| 668 $(SRC)\intervals.h \ | |
| 669 $(SRC)\buffer.h \ | |
| 670 $(SRC)\window.h \ | |
| 671 $(SRC)\blockinput.h | |
| 672 | |
| 673 $(BLD)\intervals.obj : \ | |
| 674 $(SRC)\intervals.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
675 $(EMACS_ROOT)\src\s\ms-w32.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
|
676 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 677 $(EMACS_ROOT)\src\config.h \ |
| 678 $(SRC)\lisp.h \ | |
| 679 $(SRC)\dispextern.h \ | |
| 680 $(SRC)\intervals.h \ | |
| 681 $(SRC)\buffer.h \ | |
| 682 $(SRC)\puresize.h | |
| 683 $(CC) $(CFLAGS) -Fo$@ intervals.c | |
| 684 | |
| 685 $(BLD)\keyboard.obj : \ | |
| 686 $(SRC)\keyboard.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
687 $(EMACS_ROOT)\src\s\ms-w32.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
|
688 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 689 $(EMACS_ROOT)\src\config.h \ |
| 690 $(SRC)\termchar.h \ | |
| 691 $(SRC)\termopts.h \ | |
| 692 $(SRC)\lisp.h \ | |
| 693 $(SRC)\termhooks.h \ | |
| 694 $(SRC)\macros.h \ | |
| 695 $(SRC)\frame.h \ | |
| 696 $(SRC)\window.h \ | |
| 697 $(SRC)\commands.h \ | |
| 698 $(SRC)\buffer.h \ | |
| 699 $(SRC)\disptab.h \ | |
| 700 $(SRC)\keyboard.h \ | |
| 701 $(SRC)\dispextern.h \ | |
| 702 $(SRC)\intervals.h \ | |
| 703 $(SRC)\blockinput.h \ | |
| 704 $(SRC)\msdos.h \ | |
| 705 $(SRC)\syssignal.h \ | |
| 706 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 707 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 708 $(SRC)\systty.h \ | |
|
14247
63cada85e5fd
(keyboard.obj, dispnew.obj): Depend upon w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13829
diff
changeset
|
709 $(SRC)\w32term.h \ |
| 9803 | 710 $(SRC)\xterm.h \ |
| 711 $(SRC)\vmstime.h \ | |
| 712 $(SRC)\systime.h | |
| 713 | |
| 714 $(BLD)\keymap.obj : \ | |
| 715 $(SRC)\keymap.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
716 $(EMACS_ROOT)\src\s\ms-w32.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
|
717 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 718 $(EMACS_ROOT)\src\config.h \ |
| 719 $(SRC)\lisp.h \ | |
| 720 $(SRC)\commands.h \ | |
| 721 $(SRC)\buffer.h \ | |
| 722 $(SRC)\keyboard.h \ | |
| 723 $(SRC)\termhooks.h \ | |
| 724 $(SRC)\blockinput.h | |
| 725 | |
| 726 $(BLD)\lastfile.obj : \ | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
727 $(SRC)\lastfile.c \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
728 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
729 $(EMACS_ROOT)\src\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
730 $(EMACS_ROOT)\src\config.h |
| 9803 | 731 |
| 732 $(BLD)\lread.obj : \ | |
| 733 $(SRC)\lread.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
734 $(EMACS_ROOT)\src\s\ms-w32.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
|
735 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 736 $(EMACS_ROOT)\src\config.h \ |
| 737 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 738 $(SRC)\lisp.h \ | |
| 739 $(SRC)\buffer.h \ | |
| 740 $(EMACS_ROOT)\src\paths.h \ | |
| 741 $(SRC)\commands.h \ | |
| 742 $(SRC)\keyboard.h \ | |
| 743 $(SRC)\termhooks.h \ | |
| 744 $(SRC)\msdos.h | |
| 745 | |
| 746 $(BLD)\macros.obj : \ | |
| 747 $(SRC)\macros.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
748 $(EMACS_ROOT)\src\s\ms-w32.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
|
749 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 750 $(EMACS_ROOT)\src\config.h \ |
| 751 $(SRC)\lisp.h \ | |
| 752 $(SRC)\macros.h \ | |
| 753 $(SRC)\commands.h \ | |
| 754 $(SRC)\buffer.h \ | |
| 755 $(SRC)\window.h | |
| 756 | |
| 757 $(BLD)\marker.obj : \ | |
| 758 $(SRC)\marker.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
759 $(EMACS_ROOT)\src\s\ms-w32.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
|
760 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 761 $(EMACS_ROOT)\src\config.h \ |
| 762 $(SRC)\lisp.h \ | |
| 763 $(SRC)\buffer.h | |
| 764 | |
| 765 $(BLD)\minibuf.obj : \ | |
| 766 $(SRC)\minibuf.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
767 $(EMACS_ROOT)\src\s\ms-w32.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
|
768 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 769 $(EMACS_ROOT)\src\config.h \ |
| 770 $(SRC)\lisp.h \ | |
| 771 $(SRC)\commands.h \ | |
| 772 $(SRC)\buffer.h \ | |
| 773 $(SRC)\dispextern.h \ | |
| 774 $(SRC)\frame.h \ | |
| 775 $(SRC)\window.h \ | |
| 776 $(SRC)\syntax.h | |
| 777 | |
| 778 $(BLD)\mocklisp.obj : \ | |
| 779 $(SRC)\mocklisp.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
780 $(EMACS_ROOT)\src\s\ms-w32.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
|
781 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 782 $(EMACS_ROOT)\src\config.h \ |
| 783 $(SRC)\lisp.h \ | |
| 784 $(SRC)\buffer.h | |
| 785 | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
786 $(BLD)\w32.obj : \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
787 $(SRC)\w32.c \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
788 $(SRC)\w32.h \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
789 $(SRC)\s\ms-w32.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
|
790 $(SRC)\m\intel386.h \ |
| 9803 | 791 $(SRC)\config.h \ |
| 792 $(SRC)\lisp.h \ | |
| 793 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
794 $(SRC)\w32heap.h |
| 9803 | 795 |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
796 $(BLD)\w32heap.obj : \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
797 $(SRC)\w32heap.c \ |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
798 $(SRC)\w32heap.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
799 $(SRC)\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
800 $(SRC)\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
801 $(SRC)\config.h |
| 9803 | 802 |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
803 $(BLD)\w32inevt.obj : \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
804 $(SRC)\w32inevt.c \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
805 $(SRC)\s\ms-w32.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
|
806 $(SRC)\m\intel386.h \ |
| 9803 | 807 $(SRC)\config.h \ |
| 808 $(SRC)\lisp.h \ | |
| 809 $(SRC)\frame.h \ | |
| 810 $(SRC)\blockinput.h \ | |
|
23680
02e5da32da56
($(BLD)\w32inevt.obj): Add dependencies on w32term.h
Geoff Voelker <voelker@cs.washington.edu>
parents:
23626
diff
changeset
|
811 $(SRC)\termhooks.h \ |
|
02e5da32da56
($(BLD)\w32inevt.obj): Add dependencies on w32term.h
Geoff Voelker <voelker@cs.washington.edu>
parents:
23626
diff
changeset
|
812 $(SRC)\w32heap.h \ |
|
02e5da32da56
($(BLD)\w32inevt.obj): Add dependencies on w32term.h
Geoff Voelker <voelker@cs.washington.edu>
parents:
23626
diff
changeset
|
813 $(SRC)\w32term.h |
| 9803 | 814 |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
815 $(BLD)\w32proc.obj : \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
816 $(SRC)\w32proc.c \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
817 $(SRC)\s\ms-w32.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
|
818 $(SRC)\m\intel386.h \ |
| 9803 | 819 $(SRC)\config.h \ |
| 820 $(SRC)\lisp.h \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
821 $(SRC)\w32.h \ |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
822 $(SRC)\w32heap.h \ |
| 9803 | 823 $(SRC)\vmstime.h \ |
| 824 $(SRC)\systime.h | |
| 825 | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
826 $(BLD)\w32console.obj : \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
827 $(SRC)\w32console.c \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
828 $(SRC)\s\ms-w32.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
|
829 $(SRC)\m\intel386.h \ |
| 9803 | 830 $(SRC)\config.h \ |
| 831 $(SRC)\lisp.h \ | |
| 832 $(SRC)\frame.h \ | |
| 833 $(SRC)\disptab.h \ | |
| 834 $(SRC)\termhooks.h \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
835 $(SRC)\w32inevt.h |
| 9803 | 836 |
| 837 $(BLD)\prefix-args.obj : \ | |
| 838 $(SRC)\prefix-args.c | |
| 839 | |
| 840 $(BLD)\print.obj : \ | |
| 841 $(SRC)\print.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
842 $(EMACS_ROOT)\src\s\ms-w32.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
|
843 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 844 $(EMACS_ROOT)\src\config.h \ |
| 845 $(SRC)\lisp.h \ | |
| 846 $(SRC)\buffer.h \ | |
| 847 $(SRC)\frame.h \ | |
| 848 $(SRC)\window.h \ | |
| 849 $(SRC)\process.h \ | |
| 850 $(SRC)\termchar.h \ | |
| 851 $(SRC)\dispextern.h \ | |
| 852 $(SRC)\intervals.h | |
| 853 | |
| 854 $(BLD)\process.obj : \ | |
| 855 $(SRC)\process.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
856 $(EMACS_ROOT)\src\s\ms-w32.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
|
857 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 858 $(EMACS_ROOT)\src\config.h \ |
| 859 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 860 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 861 $(SRC)\systty.h \ | |
| 862 $(SRC)\window.h \ | |
| 863 $(SRC)\buffer.h \ | |
| 864 $(SRC)\process.h \ | |
| 865 $(SRC)\termhooks.h \ | |
| 866 $(SRC)\commands.h \ | |
| 867 $(SRC)\frame.h \ | |
| 868 $(SRC)\syssignal.h \ | |
| 869 $(SRC)\vmsproc.h \ | |
| 870 $(SRC)\syswait.h \ | |
| 871 $(SRC)\lisp.h \ | |
| 872 $(SRC)\vmstime.h \ | |
| 873 $(SRC)\systime.h \ | |
| 874 $(SRC)\termopts.h | |
| 875 | |
| 876 $(BLD)\ralloc.obj : \ | |
| 877 $(SRC)\ralloc.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
878 $(EMACS_ROOT)\src\s\ms-w32.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
|
879 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 880 $(EMACS_ROOT)\src\config.h \ |
| 881 $(SRC)\lisp.h \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
882 $(SRC)\s\ms-w32.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
|
883 $(SRC)\m\intel386.h \ |
| 9803 | 884 $(SRC)\config.h \ |
| 885 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 886 $(SRC)\getpagesize.h | |
| 887 | |
| 888 $(BLD)\regex.obj : \ | |
| 889 $(SRC)\regex.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
890 $(EMACS_ROOT)\src\s\ms-w32.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
|
891 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 892 $(EMACS_ROOT)\src\config.h \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
893 $(SRC)\s\ms-w32.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
|
894 $(SRC)\m\intel386.h \ |
| 9803 | 895 $(SRC)\config.h \ |
| 896 $(SRC)\lisp.h \ | |
| 897 $(SRC)\buffer.h \ | |
| 898 $(SRC)\syntax.h \ | |
| 899 $(SRC)\regex.h | |
| 900 | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
901 $(BLD)\region-cache.obj : \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
902 $(SRC)\region-cache.c \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
903 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
904 $(EMACS_ROOT)\src\m\intel386.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
905 $(EMACS_ROOT)\src\config.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
906 $(SRC)\lisp.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
907 $(SRC)\buffer.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
908 $(SRC)\region-cache.h |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
909 |
| 9803 | 910 $(BLD)\scroll.obj : \ |
| 911 $(SRC)\scroll.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
912 $(EMACS_ROOT)\src\s\ms-w32.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
|
913 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 914 $(EMACS_ROOT)\src\config.h \ |
| 915 $(SRC)\termchar.h \ | |
| 916 $(SRC)\lisp.h \ | |
| 917 $(SRC)\dispextern.h \ | |
| 918 $(SRC)\frame.h | |
| 919 | |
| 920 $(BLD)\search.obj : \ | |
| 921 $(SRC)\search.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
922 $(EMACS_ROOT)\src\s\ms-w32.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
|
923 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 924 $(EMACS_ROOT)\src\config.h \ |
| 925 $(SRC)\lisp.h \ | |
| 926 $(SRC)\syntax.h \ | |
| 927 $(SRC)\buffer.h \ | |
| 928 $(SRC)\commands.h \ | |
| 929 $(SRC)\blockinput.h \ | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
930 $(SRC)\regex.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
931 $(SRC)\region-cache.h |
| 9803 | 932 |
| 11742 | 933 $(BLD)\strftime.obj : \ |
| 934 $(SRC)\strftime.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
935 $(EMACS_ROOT)\src\s\ms-w32.h \ |
| 11742 | 936 $(EMACS_ROOT)\src\m\intel386.h \ |
| 937 $(EMACS_ROOT)\src\config.h | |
| 938 | |
| 9803 | 939 $(BLD)\sunfns.obj : \ |
| 940 $(SRC)\sunfns.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
941 $(EMACS_ROOT)\src\s\ms-w32.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
|
942 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 943 $(EMACS_ROOT)\src\config.h \ |
| 944 $(SRC)\lisp.h \ | |
| 945 $(SRC)\window.h \ | |
| 946 $(SRC)\buffer.h \ | |
| 947 $(SRC)\termhooks.h | |
| 948 | |
| 949 $(BLD)\syntax.obj : \ | |
| 950 $(SRC)\syntax.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
951 $(EMACS_ROOT)\src\s\ms-w32.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
|
952 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 953 $(EMACS_ROOT)\src\config.h \ |
| 954 $(SRC)\lisp.h \ | |
| 955 $(SRC)\commands.h \ | |
| 956 $(SRC)\buffer.h \ | |
| 957 $(SRC)\syntax.h | |
| 958 | |
| 959 $(BLD)\sysdep.obj : \ | |
| 960 $(SRC)\sysdep.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
961 $(EMACS_ROOT)\src\s\ms-w32.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
|
962 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 963 $(EMACS_ROOT)\src\config.h \ |
| 964 $(SRC)\lisp.h \ | |
| 965 $(SRC)\blockinput.h \ | |
| 966 $(SRC)\dosfns.h \ | |
| 967 $(SRC)\msdos.h \ | |
| 968 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 969 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 970 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 971 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 972 $(SRC)\systty.h \ | |
| 973 $(SRC)\vmsproc.h \ | |
| 974 $(SRC)\syswait.h \ | |
| 975 $(SRC)\frame.h \ | |
| 976 $(SRC)\window.h \ | |
| 977 $(SRC)\termhooks.h \ | |
| 978 $(SRC)\termchar.h \ | |
| 979 $(SRC)\termopts.h \ | |
| 980 $(SRC)\dispextern.h \ | |
| 981 $(SRC)\process.h \ | |
| 982 $(SRC)\vmsdir.h \ | |
| 983 $(SRC)\ndir.h \ | |
| 984 $(SRC)\syssignal.h \ | |
| 985 $(SRC)\vmstime.h \ | |
| 986 $(SRC)\systime.h \ | |
| 987 $(SRC)\uaf.h \ | |
| 988 $(SRC)\vms-pwd.h \ | |
| 989 $(EMACS_ROOT)\src\acldef.h \ | |
| 990 $(EMACS_ROOT)\src\chpdef.h | |
| 991 | |
| 992 $(BLD)\term.obj : \ | |
| 993 $(SRC)\term.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
994 $(EMACS_ROOT)\src\s\ms-w32.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
|
995 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 996 $(EMACS_ROOT)\src\config.h \ |
| 997 $(SRC)\termchar.h \ | |
| 998 $(SRC)\termopts.h \ | |
| 999 $(SRC)\cm.h \ | |
| 1000 $(SRC)\lisp.h \ | |
| 1001 $(SRC)\frame.h \ | |
| 1002 $(SRC)\disptab.h \ | |
| 1003 $(SRC)\termhooks.h \ | |
| 1004 $(SRC)\keyboard.h | |
| 1005 | |
| 1006 $(BLD)\termcap.obj : \ | |
| 1007 $(SRC)\termcap.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1008 $(EMACS_ROOT)\src\s\ms-w32.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
|
1009 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1010 $(EMACS_ROOT)\src\config.h \ |
| 1011 $(EMACS_ROOT)\nt\inc\sys\file.h | |
| 1012 | |
| 1013 $(BLD)\terminfo.obj : \ | |
| 1014 $(SRC)\terminfo.c | |
| 1015 | |
| 1016 $(BLD)\textprop.obj : \ | |
| 1017 $(SRC)\textprop.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1018 $(EMACS_ROOT)\src\s\ms-w32.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
|
1019 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1020 $(EMACS_ROOT)\src\config.h \ |
| 1021 $(SRC)\lisp.h \ | |
| 1022 $(SRC)\dispextern.h \ | |
| 1023 $(SRC)\intervals.h \ | |
| 1024 $(SRC)\buffer.h \ | |
| 1025 $(SRC)\window.h | |
| 1026 | |
| 1027 $(BLD)\tparam.obj : \ | |
| 1028 $(SRC)\tparam.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1029 $(EMACS_ROOT)\src\s\ms-w32.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
|
1030 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1031 $(EMACS_ROOT)\src\config.h |
| 1032 | |
| 1033 $(BLD)\undo.obj : \ | |
| 1034 $(SRC)\undo.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1035 $(EMACS_ROOT)\src\s\ms-w32.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
|
1036 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1037 $(EMACS_ROOT)\src\config.h \ |
| 1038 $(SRC)\lisp.h \ | |
| 1039 $(SRC)\buffer.h \ | |
| 1040 $(SRC)\commands.h | |
| 1041 | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1042 $(BLD)\unexw32.obj : \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1043 $(SRC)\unexw32.c \ |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1044 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1045 $(EMACS_ROOT)\src\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1046 $(EMACS_ROOT)\src\config.h \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1047 $(SRC)\w32heap.h |
| 9803 | 1048 |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
1049 $(BLD)\vm-limit.obj : \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
1050 $(SRC)\vm-limit.c \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1051 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
1052 $(EMACS_ROOT)\src\m\intel386.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
1053 $(EMACS_ROOT)\src\config.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
1054 $(SRC)\mem-limits.h |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
1055 |
| 9803 | 1056 $(BLD)\widget.obj : \ |
| 1057 $(SRC)\widget.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1058 $(EMACS_ROOT)\src\s\ms-w32.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
|
1059 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1060 $(EMACS_ROOT)\src\config.h \ |
| 1061 $(SRC)\lisp.h \ | |
| 1062 $(SRC)\xterm.h \ | |
| 1063 $(SRC)\frame.h \ | |
| 1064 $(SRC)\dispextern.h \ | |
| 1065 $(SRC)\widget.h \ | |
| 1066 $(SRC)\widgetprv.h | |
| 1067 | |
| 1068 $(BLD)\window.obj : \ | |
| 1069 $(SRC)\window.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1070 $(EMACS_ROOT)\src\s\ms-w32.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
|
1071 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1072 $(EMACS_ROOT)\src\config.h \ |
| 1073 $(SRC)\lisp.h \ | |
| 1074 $(SRC)\buffer.h \ | |
| 1075 $(SRC)\frame.h \ | |
| 1076 $(SRC)\window.h \ | |
| 1077 $(SRC)\commands.h \ | |
| 1078 $(SRC)\indent.h \ | |
| 1079 $(SRC)\termchar.h \ | |
| 1080 $(SRC)\disptab.h \ | |
| 1081 $(SRC)\keyboard.h | |
| 1082 | |
| 1083 $(BLD)\xdisp.obj : \ | |
| 1084 $(SRC)\xdisp.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1085 $(EMACS_ROOT)\src\s\ms-w32.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
|
1086 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1087 $(EMACS_ROOT)\src\config.h \ |
| 1088 $(SRC)\lisp.h \ | |
| 1089 $(SRC)\frame.h \ | |
| 1090 $(SRC)\window.h \ | |
| 1091 $(SRC)\termchar.h \ | |
| 1092 $(SRC)\buffer.h \ | |
| 1093 $(SRC)\indent.h \ | |
| 1094 $(SRC)\commands.h \ | |
| 1095 $(SRC)\macros.h \ | |
| 1096 $(SRC)\disptab.h \ | |
| 1097 $(SRC)\termhooks.h \ | |
| 1098 $(SRC)\dispextern.h \ | |
| 1099 $(SRC)\intervals.h | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1100 |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1101 $(BLD)\w32faces.obj: \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1102 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1103 $(EMACS_ROOT)\src\m\intel386.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1104 $(EMACS_ROOT)\src\config.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1105 $(SRC)\w32faces.c \ |
| 15233 | 1106 $(SRC)\lisp.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1107 $(SRC)\w32term.h \ |
|
16888
380c7e461c14
Use new name w32gui.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1108 $(SRC)\w32gui.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1109 $(SRC)\buffer.h \ |
| 15233 | 1110 $(SRC)\dispextern.h \ |
| 1111 $(SRC)\frame.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1112 $(SRC)\blockinput.h \ |
| 15233 | 1113 $(SRC)\window.h \ |
| 1114 $(SRC)\intervals.h | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1115 |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1116 $(BLD)\w32fns.obj: \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1117 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1118 $(EMACS_ROOT)\src\m\intel386.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1119 $(EMACS_ROOT)\src\config.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1120 $(SRC)\w32fns.c \ |
|
23504
caf3f908142d
(w32fns.c): Add x-list-font.c to dependancies.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22434
diff
changeset
|
1121 $(SRC)\x-list-font.c \ |
| 15233 | 1122 $(SRC)\lisp.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1123 $(SRC)\w32term.h \ |
|
16888
380c7e461c14
Use new name w32gui.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1124 $(SRC)\w32gui.h \ |
| 15233 | 1125 $(SRC)\frame.h \ |
| 1126 $(SRC)\window.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1127 $(SRC)\buffer.h \ |
| 15233 | 1128 $(SRC)\dispextern.h \ |
| 1129 $(SRC)\keyboard.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1130 $(SRC)\blockinput.h \ |
| 15233 | 1131 $(SRC)\paths.h \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1132 $(SRC)\w32heap.h \ |
| 15233 | 1133 $(SRC)\termhooks.h |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1134 |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1135 $(BLD)\w32menu.obj: \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1136 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1137 $(EMACS_ROOT)\src\m\intel386.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1138 $(EMACS_ROOT)\src\config.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1139 $(SRC)\w32menu.c \ |
| 15233 | 1140 $(SRC)\lisp.h \ |
| 1141 $(SRC)\termhooks.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1142 $(SRC)\frame.h \ |
| 15233 | 1143 $(SRC)\window.h \ |
| 1144 $(SRC)\keyboard.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1145 $(SRC)\blockinput.h \ |
| 15233 | 1146 $(SRC)\buffer.h |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1147 |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1148 $(BLD)\w32term.obj: \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1149 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1150 $(EMACS_ROOT)\src\m\intel386.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1151 $(EMACS_ROOT)\src\config.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1152 $(SRC)\w32term.c \ |
| 15233 | 1153 $(SRC)\lisp.h \ |
| 1154 $(SRC)\blockinput.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1155 $(SRC)\w32term.h \ |
|
16888
380c7e461c14
Use new name w32gui.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1156 $(SRC)\w32gui.h \ |
| 15233 | 1157 $(SRC)\systty.h \ |
| 1158 $(SRC)\systime.h \ | |
| 1159 $(SRC)\frame.h \ | |
| 1160 $(SRC)\dispextern.h \ | |
| 1161 $(SRC)\termhooks.h \ | |
| 1162 $(SRC)\termopts.h \ | |
| 1163 $(SRC)\termchar.h \ | |
| 1164 $(SRC)\gnu.h \ | |
| 1165 $(SRC)\disptab.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1166 $(SRC)\buffer.h \ |
| 15233 | 1167 $(SRC)\window.h \ |
| 15238 | 1168 $(SRC)\keyboard.h \ |
| 15233 | 1169 $(SRC)\intervals.h |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1170 |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1171 $(BLD)\w32select.obj: \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1172 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1173 $(EMACS_ROOT)\src\m\intel386.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1174 $(EMACS_ROOT)\src\config.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1175 $(SRC)\w32select.c \ |
| 15233 | 1176 $(SRC)\lisp.h \ |
| 1177 $(SRC)\w32term.h \ | |
|
16888
380c7e461c14
Use new name w32gui.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1178 $(SRC)\w32gui.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1179 $(SRC)\dispextern.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1180 $(SRC)\frame.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1181 $(SRC)\blockinput.h |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1182 |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1183 $(BLD)\w32reg.obj: \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1184 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1185 $(EMACS_ROOT)\src\m\intel386.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1186 $(EMACS_ROOT)\src\config.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1187 $(SRC)\w32reg.c \ |
| 15233 | 1188 $(SRC)\lisp.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1189 $(SRC)\w32term.h \ |
|
16888
380c7e461c14
Use new name w32gui.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1190 $(SRC)\w32gui.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1191 $(SRC)\blockinput.h |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1192 |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1193 $(BLD)\w32xfns.obj: \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1194 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1195 $(EMACS_ROOT)\src\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1196 $(EMACS_ROOT)\src\config.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1197 $(SRC)\w32xfns.c \ |
|
24143
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1198 |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1199 $(BLD)\w32bdf.obj: \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1200 $(EMACS_ROOT)\src/s\ms-w32.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1201 $(EMACS_ROOT)\src/m\intel386.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1202 $(EMACS_ROOT)\src/config.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1203 $(SRC)\w32bdf.c \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1204 $(SRC)\lisp.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1205 $(SRC)\charset.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1206 $(SRC)\fontset.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1207 $(SRC)\blockinput.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1208 $(SRC)\w32gui.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1209 $(SRC)\w32term.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1210 $(SRC)\w32bdf.h |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1211 $(SRC)\lisp.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1212 $(SRC)\w32term.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1213 $(SRC)\w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1214 $(SRC)\frame.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1215 $(SRC)\blockinput.h |
