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