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