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