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