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