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