annotate lib-src/makefile.nt @ 13989:d60fffb9acd1

(icomplete-simple-completing-p, icomplete-completions): Doc fix.
author Karl Heuer <kwzh@gnu.org>
date Thu, 04 Jan 1996 23:41:53 +0000
parents badba571804f
children 4b7b8a937a5d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 # Makefile for GNU Emacs lib-src directory.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2 # Geoff Voelker (voelker@cs.washington.edu)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3 # Copyright (C) 1994 Free Software Foundation, Inc.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 # This file is part of GNU Emacs.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 # GNU Emacs is free software; you can redistribute it and/or modify
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 # it under the terms of the GNU General Public License as published by
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 # the Free Software Foundation; either version 2, or (at your option)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 # any later version.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 # GNU Emacs is distributed in the hope that it will be useful,
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 # GNU General Public License for more details.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 # You should have received a copy of the GNU General Public License
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 # along with GNU Emacs; see the file COPYING. If not, write to
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 # Sets up the system dependent macros.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25 !include ..\nt\makefile.def
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27 LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 -DNO_ARCHIVES=1 -I..\src
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 OBJDIR = obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 BLD = $(OBJDIR)\$(ARCH)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30
13930
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
31 LINK_FLAGS = $(ARCH_LDFLAGS) -debug:PARTIAL -machine:$(ARCH) -subsystem:console -entry:mainCRTStartup setargv.obj
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 ALL = $(BLD)\make-docfile.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 $(BLD)\hexl.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 $(BLD)\wakeup.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36 $(BLD)\ctags.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 $(BLD)\etags.exe
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 # don't know what (if) to do with these yet...
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 # $(BLD)\sorted-doc.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 # $(BLD)\env.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 # $(BLD)\server.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 # $(BLD)\emacstool.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 # $(BLD)\fakemail.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 # $(BLD)\leditcfns.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 # $(BLD)\movemail.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 # $(BLD)\emacsclient.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50 # $(BLD)\cvtmail.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51 # $(BLD)\digest-doc.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
52 # $(BLD)\test-distrib.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
54
11939
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
55 LIBS = $(BASE_LIBS)
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
56
11939
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
57 $(BLD)\make-docfile.exe: $(BLD)\make-docfile.obj
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
58 $(BLD)\hexl.exe: $(BLD)\hexl.obj
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
59 $(BLD)\wakeup.exe: $(BLD)\wakeup.obj $(BLD)\ntlib.obj
13930
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
60 $(LINK) -out:$@ $(LINK_FLAGS) $(BLD)\wakeup.obj \
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
61 $(BLD)\ntlib.obj $(LIBS)
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62
13930
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
63 make-docfile: $(BLD) $(BLD)\make-docfile.exe
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
64 wakeup: $(BLD) $(BLD)\wakeup.exe
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
65 etags: $(BLD) $(BLD)\etags.exe
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
66 hexl: $(BLD) $(BLD)\hexl.exe
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
67
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
68 ETAGSOBJ = $(BLD)\etags.obj \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 $(BLD)\getopt.obj \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
70 $(BLD)\getopt1.obj \
13930
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
71 $(BLD)\ntlib.obj \
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
72 $(BLD)\regex.obj \
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
73 $(BLD)\alloca.obj
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
74
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
75 $(BLD)\etags.exe: $(ETAGSOBJ)
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
76 $(LINK) -out:$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS)
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
77
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
78
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
79 $(BLD)\regex.obj: ../src/regex.c ../src/regex.h ../src/config.h
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
80 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
81 ../src/regex.c -Fo$@
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
82
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
83 $(BLD)\etags.obj: etags.c
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
84 $(CC) $(CFLAGS) -DETAGS_REGEXPS -Fo$@ etags.c
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
85
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
86 CTAGSOBJ = $(BLD)\ctags.obj \
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
87 $(BLD)\getopt.obj \
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
88 $(BLD)\getopt1.obj \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89 $(BLD)\ntlib.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
90
13930
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
91 $(BLD)\ctags.exe: ctags.c $(CTAGSOBJ)
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
92 $(LINK) -out:$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS)
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
93
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
94 ctags.c: etags.c
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
95 - del ctags.c
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
96 copy etags.c ctags.c
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
97
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
98 $(BLD)\ctags.obj: ctags.c
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
99 $(CC) $(CFLAGS) -DCTAGS -Fo$@ ctags.c
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102 # don't know what to do with these yet...
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
103 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104 # $(BLD)\sorted-doc.exe: $(LIBS) $(BLD)\sorted-doc.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
105 # $(BLD)\yow.exe: $(LIBS) $(BLD)\yow.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
106 # $(BLD)\emacstool.exe: $(LIBS) $(BLD)\emacstool.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
107 # $(BLD)\env.exe: $(LIBS) $(BLD)\env.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
108 # $(BLD)\fakemail.exe: $(LIBS) $(BLD)\fakemail.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
109 # $(BLD)\leditcfns.exe: $(LIBS) $(BLD)\leditcfns.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
110 # $(BLD)\server.exe: $(LIBS) $(BLD)\server.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
111 # $(BLD)\wakeup.exe: $(LIBS) $(BLD)\wakeup.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
112 # $(BLD)\movemail.exe: $(LIBS) $(BLD)\movemail.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
113 # $(BLD)\cvtmail.exe: $(LIBS) $(BLD)\cvtmail.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
114 # $(BLD)\digest-doc.exe: $(LIBS) $(BLD)\digest-doc.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115 # $(BLD)\emacsclient.exe: $(LIBS) $(BLD)\emacsclient.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116 # $(BLD)\qsort.exe: $(LIBS) $(BLD)\qsort.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
117 # $(BLD)\test-distrib.exe: $(LIBS) $(BLD)\test-distrib.obj
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
118
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
119 #
11939
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
120 # From ..\src\makefile.nt.
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121 #
13429
a90a9820c5f6 (DOC): Include strings from w32term.c, w32xfns.c,
Geoff Voelker <voelker@cs.washington.edu>
parents: 12241
diff changeset
122 obj = abbrev.c alloc.c alloca.c buffer.c bytecode.c callint.c callproc.c casefiddle.c cm.c cmds.c data.c dired.c dispnew.c doc.c doprnt.c editfns.c eval.c fileio.c filelock.c filemode.c fns.c indent.c insdel.c keyboard.c keymap.c lastfile.c lread.c macros.c marker.c minibuf.c xfaces.c mocklisp.c nt.c ntheap.c ntinevt.c ntproc.c ntterm.c print.c process.c regex.c scroll.c search.c syntax.c sysdep.c term.c termcap.c tparam.c undo.c unexnt.c window.c xdisp.c casetab.c floatfns.c frame.c gmalloc.c intervals.c ralloc.c textprop.c vm-limit.c region-cache.c strftime.c w32term.c w32xfns.c w32fns.c w32faces.c w32select.c w32menu.c w32reg.c
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
123
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
124 lispdir = ..\lisp
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
125
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
126 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 # These are the lisp files that are loaded up in loadup.el
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
128 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129 lisp= \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130 $(lispdir)\subr.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
131 $(lispdir)\byte-run.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
132 $(lispdir)\map-ynp.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
133 $(lispdir)\loaddefs.el \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
134 $(lispdir)\simple.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
135 $(lispdir)\help.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136 $(lispdir)\files.elc \
11394
77d5d2219f05 (obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents: 9821
diff changeset
137 $(lispdir)\format.elc \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138 $(lispdir)\indent.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 $(lispdir)\window.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 $(lispdir)\frame.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141 $(lispdir)\mouse.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
142 $(lispdir)\menu-bar.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143 $(lispdir)\scroll-bar.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 $(lispdir)\select.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
145 $(lispdir)\paths.el \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 $(lispdir)\startup.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
147 $(lispdir)\lisp.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 $(lispdir)\page.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
149 $(lispdir)\register.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
150 $(lispdir)\paragraphs.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151 $(lispdir)\lisp-mode.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
152 $(lispdir)\text-mode.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
153 $(lispdir)\fill.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154 $(lispdir)\c-mode.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155 $(lispdir)\isearch.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
156 $(lispdir)\replace.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
157 $(lispdir)\abbrev.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158 $(lispdir)\buff-menu.elc \
11394
77d5d2219f05 (obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents: 9821
diff changeset
159 $(lispdir)\ls-lisp.elc \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
160 $(lispdir)\winnt.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
161 $(lispdir)\float-sup.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
162 $(lispdir)\vc-hooks.elc \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
163 $(lispdir)\version.el
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
164
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
165 DOC = DOC
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
166 $(DOC): $(BLD)\make-docfile.exe
13631
abb8f19ece25 (DOC, clean): Don't use switches to del not supported by Win95.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13429
diff changeset
167 - del $(DOC)
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
168 $(BLD)\make-docfile -d ..\src $(obj) > $(DOC)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
169 $(BLD)\make-docfile -d ..\src $(lisp) >> $(DOC)
11394
77d5d2219f05 (obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents: 9821
diff changeset
170 $(CP) $(DOC) ..\etc\DOC-X
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
171 - mkdir ..\src\$(OBJDIR)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
172 - mkdir ..\src\$(OBJDIR)\etc
11394
77d5d2219f05 (obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents: 9821
diff changeset
173 $(CP) $(DOC) ..\src\$(OBJDIR)\etc\DOC-X
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
174
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
175 {$(BLD)}.obj{$(BLD)}.exe:
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
176 $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
177
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
178 .c{$(BLD)}.obj:
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
179 $(CC) $(CFLAGS) -Fo$@ $<
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
180
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
181 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
182 # Build the executables
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
183 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
184 all: $(BLD) $(ALL) $(DOC)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
185
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
186 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
187 # Assuming INSTALL_DIR is defined, build and install emacs in it.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
188 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
189 INSTALL_FILES = $(ALL)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
190 install: $(INSTALL_FILES)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
191 - mkdir $(INSTALL_DIR)\bin
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
192 $(CP) $(BLD)\etags.exe $(INSTALL_DIR)\bin
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
193 $(CP) $(BLD)\ctags.exe $(INSTALL_DIR)\bin
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
194 $(CP) $(BLD)\hexl.exe $(INSTALL_DIR)\bin
12241
f92938c6b7c9 (install): Copy wakeup.exe properly.
Richard M. Stallman <rms@gnu.org>
parents: 11939
diff changeset
195 $(CP) $(BLD)\wakeup.exe $(INSTALL_DIR)\bin
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
196 - mkdir $(INSTALL_DIR)\etc
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197 $(CP) $(DOC) $(INSTALL_DIR)\etc
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
198
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
199 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
200 # Maintenance
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
201 #
13631
abb8f19ece25 (DOC, clean): Don't use switches to del not supported by Win95.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13429
diff changeset
202 clean:; - del *~ *.pdb
11394
77d5d2219f05 (obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents: 9821
diff changeset
203 - $(DEL_TREE) deleted
77d5d2219f05 (obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents: 9821
diff changeset
204 - $(DEL_TREE) obj
13631
abb8f19ece25 (DOC, clean): Don't use switches to del not supported by Win95.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13429
diff changeset
205 - del DOC*
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
206
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
207 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
208 # Headers we would preprocess if we could.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
209 #
11939
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
210 ..\src\config.h: ..\nt\$(CONFIG_H)
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
211 $(CP) $** $@
11394
77d5d2219f05 (obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents: 9821
diff changeset
212 ..\src\paths.h: ..\nt\paths.h
11939
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
213 $(CP) $** $@
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
214
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
215 ### DEPENDENCIES ###
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
216
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217 EMACS_ROOT = ..
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 SRC = .
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
219
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
220 $(BLD)\alloca.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
221 $(SRC)\alloca.c \
9821
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
222 $(EMACS_ROOT)\src\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
223 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
224 $(EMACS_ROOT)\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
225 $(EMACS_ROOT)\src\blockinput.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
226
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
227 $(BLD)\b2m.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
228 $(SRC)\b2m.c \
9821
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
229 $(EMACS_ROOT)\src\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
230 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
231 $(EMACS_ROOT)\lib-src\..\src\config.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
232
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
233 $(BLD)\cvtmail.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
234 $(SRC)\cvtmail.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
235
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
236 $(BLD)\digest-doc.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
237 $(SRC)\digest-doc.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
238
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
239 $(BLD)\emacsclient.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
240 $(SRC)\emacsclient.c \
9821
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
241 $(EMACS_ROOT)\src\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
242 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243 $(EMACS_ROOT)\lib-src\..\src\config.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245 $(BLD)\emacsserver.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
246 $(SRC)\emacsserver.c \
9821
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
247 $(EMACS_ROOT)\src\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
248 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249 $(EMACS_ROOT)\lib-src\..\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250 $(EMACS_ROOT)\nt\inc\sys\file.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
252 $(BLD)\emacstool.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
253 $(SRC)\emacstool.c \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
254 $(EMACS_ROOT)\nt\inc\sys\file.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
255
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
256 $(BLD)\etags.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
257 $(SRC)\etags.c \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
258 $(EMACS_ROOT)\nt\inc\sys\param.h \
9821
f1cb7ef9e9bc Changed references 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\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
260 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
261 $(EMACS_ROOT)\lib-src\..\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
262 $(SRC)\getopt.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
263
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264 $(BLD)\fakemail.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
265 $(SRC)\fakemail.c \
9821
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
266 $(EMACS_ROOT)\src\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
267 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
268 $(EMACS_ROOT)\lib-src\..\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
269 $(EMACS_ROOT)\nt\inc\pwd.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
270
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
271 $(BLD)\getdate.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
272 $(SRC)\getdate.c \
9821
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
273 $(EMACS_ROOT)\src\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
274 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
275 $(EMACS_ROOT)\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
276 $(MSTOOLS_SYS)\types.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
277
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
278 $(BLD)\getopt.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
279 $(SRC)\getopt.c \
9821
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
280 $(EMACS_ROOT)\src\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
281 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
282 $(EMACS_ROOT)\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
283 $(SRC)\getopt.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
284
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
285 $(BLD)\getopt1.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
286 $(SRC)\getopt1.c \
9821
f1cb7ef9e9bc Changed references 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 $(EMACS_ROOT)\src\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
288 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
289 $(EMACS_ROOT)\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
290 $(SRC)\getopt.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
291
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
292 $(BLD)\hexl.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
293 $(SRC)\hexl.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
294
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
295 $(BLD)\leditcfns.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
296 $(SRC)\leditcfns.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
297
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
298 $(BLD)\make-docfile.obj : \
11939
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
299 $(SRC)\make-docfile.c \
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
300 $(EMACS_ROOT)\src\config.h
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
301
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
302 $(BLD)\make-path.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
303 $(SRC)\make-path.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
304
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
305 $(BLD)\movemail.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
306 $(SRC)\movemail.c \
9821
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
307 $(EMACS_ROOT)\src\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
308 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
309 $(EMACS_ROOT)\lib-src\..\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
310 $(EMACS_ROOT)\nt\inc\sys\file.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
311 $(EMACS_ROOT)\src\vmsproc.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
312 $(EMACS_ROOT)\lib-src\..\src\syswait.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
313 $(EMACS_ROOT)\nt\inc\pwd.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
314
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
315 $(BLD)\profile.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
316 $(SRC)\profile.c \
9821
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
317 $(EMACS_ROOT)\src\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
318 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
319 $(EMACS_ROOT)\lib-src\..\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
320 $(EMACS_ROOT)\src\vmstime.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
321 $(EMACS_ROOT)\lib-src\..\src\systime.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
322
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
323 $(BLD)\qsort.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
324 $(SRC)\qsort.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
325
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
326 $(BLD)\sorted-doc.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
327 $(SRC)\sorted-doc.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
328
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
329 $(BLD)\tcp.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
330 $(SRC)\tcp.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
331
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
332 $(BLD)\test-distrib.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
333 $(SRC)\test-distrib.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
334
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
335 $(BLD)\timer.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
336 $(SRC)\timer.c \
9821
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
337 $(EMACS_ROOT)\src\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
338 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
339 $(EMACS_ROOT)\lib-src\..\src\config.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
340
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
341 $(BLD)\wakeup.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
342 $(SRC)\wakeup.c \
9821
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
343 $(EMACS_ROOT)\src\s\windowsnt.h \
f1cb7ef9e9bc Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents: 9803
diff changeset
344 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
345 $(EMACS_ROOT)\src\config.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
346
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
347 $(BLD)\yow.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
348 $(SRC)\yow.c \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
349 $(EMACS_ROOT)\lib-src\..\src\paths.h