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