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