Mercurial > emacs
annotate lib-src/makefile.nt @ 22973:c3bbca1b6f3a
(describe-function-1): Handle macros properly.
Handle multiple levels of aliases.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 10 Aug 1998 02:02:56 +0000 |
parents | 9a847e9cabfa |
children | 9e10a92252d9 |
rev | line source |
---|---|
9803 | 1 # Makefile for GNU Emacs lib-src directory. |
2 # Geoff Voelker (voelker@cs.washington.edu) | |
3 # Copyright (C) 1994 Free Software Foundation, Inc. | |
4 # | |
5 # This file is part of GNU Emacs. | |
6 # | |
7 # GNU Emacs is free software; you can redistribute it and/or modify | |
8 # it under the terms of the GNU General Public License as published by | |
9 # the Free Software Foundation; either version 2, or (at your option) | |
10 # any later version. | |
11 # | |
12 # GNU Emacs is distributed in the hope that it will be useful, | |
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 # GNU General Public License for more details. | |
16 # | |
17 # You should have received a copy of the GNU General Public License | |
15742 | 18 # along with GNU Emacs; see the file COPYING. If not, write to the |
19 # Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 # Boston, MA 02111-1307, USA. | |
9803 | 21 # |
22 | |
23 # | |
24 # Sets up the system dependent macros. | |
25 # | |
26 !include ..\nt\makefile.def | |
27 | |
22317
9a847e9cabfa
(LOCAL_FLAGS): Define HAVE_CONFIG_H.
Andrew Innes <andrewi@gnu.org>
parents:
21595
diff
changeset
|
28 LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \ |
9a847e9cabfa
(LOCAL_FLAGS): Define HAVE_CONFIG_H.
Andrew Innes <andrewi@gnu.org>
parents:
21595
diff
changeset
|
29 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I..\nt\inc -I..\src |
9803 | 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 | 32 |
33 ALL = $(BLD)\make-docfile.exe \ | |
34 $(BLD)\hexl.exe \ | |
35 $(BLD)\ctags.exe \ | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
36 $(BLD)\etags.exe \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
37 $(BLD)\movemail.exe \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
38 $(BLD)\fakemail.exe \ |
9803 | 39 |
40 | |
41 # don't know what (if) to do with these yet... | |
42 # | |
43 # $(BLD)\sorted-doc.exe \ | |
44 # $(BLD)\env.exe \ | |
45 # $(BLD)\server.exe \ | |
46 # $(BLD)\emacstool.exe \ | |
47 # $(BLD)\leditcfns.exe \ | |
48 # $(BLD)\emacsclient.exe \ | |
49 # $(BLD)\cvtmail.exe \ | |
50 # $(BLD)\digest-doc.exe \ | |
51 # $(BLD)\test-distrib.exe \ | |
52 | |
53 | |
11939 | 54 LIBS = $(BASE_LIBS) |
9803 | 55 |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
56 $(BLD)\make-docfile.exe: $(BLD)\make-docfile.obj $(BLD)\ntlib.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
57 $(LINK) -out:$@ $(LINK_FLAGS) $(BLD)\make-docfile.obj $(BLD)\ntlib.obj $(LIBS) |
11939 | 58 $(BLD)\hexl.exe: $(BLD)\hexl.obj |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
59 $(BLD)\fakemail.exe: $(BLD)\fakemail.obj $(BLD)\ntlib.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
60 $(LINK) -out:$@ $(LINK_FLAGS) -debug:full $(BLD)\fakemail.obj $(BLD)\ntlib.obj $(LIBS) |
9803 | 61 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
62 make-docfile: $(BLD) $(BLD)\make-docfile.exe |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
63 etags: $(BLD) $(BLD)\etags.exe |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
64 hexl: $(BLD) $(BLD)\hexl.exe |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
65 movemail: $(BLD) $(BLD)\movemail.exe |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
66 fakemail: $(BLD) $(BLD)\fakemail.exe |
9803 | 67 |
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
68 GETOPTOBJS = $(BLD)\getopt.obj $(BLD)\getopt1.obj |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
69 GETOPTDEPS = $(GETOPTOBJS) getopt.h |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
70 MOVEMAILOBJS = $(BLD)\movemail.obj \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
71 $(BLD)\pop.obj \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
72 $(BLD)\ntlib.obj \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
73 $(GETOPTOBJS) |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
74 |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
75 $(BLD)\movemail.exe: $(MOVEMAILOBJS) getopt.h |
19693
33826686c78e
(movemail.exe): Link wsock32.lib before LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19231
diff
changeset
|
76 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib |
33826686c78e
(movemail.exe): Link wsock32.lib before LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19231
diff
changeset
|
77 $(LINK) -out:$@ $(LINK_FLAGS) -debug:FULL $(MOVEMAILOBJS) wsock32.lib $(LIBS) |
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
78 |
9803 | 79 ETAGSOBJ = $(BLD)\etags.obj \ |
80 $(BLD)\getopt.obj \ | |
81 $(BLD)\getopt1.obj \ | |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
82 $(BLD)\ntlib.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
83 $(BLD)\regex.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
84 $(BLD)\alloca.obj |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
85 |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
86 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
87 $(BLD)\etags.exe: $(ETAGSOBJ) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
88 $(LINK) -out:$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
89 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
90 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
91 $(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
|
92 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
93 ../src/regex.c -Fo$@ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
94 |
15408
74032d1d3223
(ETAGS_CFLAGS): Define HAVE_GETCWD macro.
Richard M. Stallman <rms@gnu.org>
parents:
15257
diff
changeset
|
95 ETAGS_CFLAGS = -DETAGS_REGEXPS -DHAVE_GETCWD |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
96 $(BLD)\etags.obj: etags.c |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
97 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) -Fo$@ etags.c |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
98 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
99 CTAGSOBJ = $(BLD)\ctags.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
100 $(BLD)\getopt.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
101 $(BLD)\getopt1.obj \ |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
102 $(BLD)\ntlib.obj \ |
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
103 $(BLD)\regex.obj \ |
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
104 $(BLD)\alloca.obj |
9803 | 105 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
106 $(BLD)\ctags.exe: ctags.c $(CTAGSOBJ) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
107 $(LINK) -out:$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
108 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
109 ctags.c: etags.c |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
110 - $(DEL) ctags.c |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
111 copy etags.c ctags.c |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
112 |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
113 CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS) |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
114 $(BLD)\ctags.obj: ctags.c |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
115 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) -Fo$@ ctags.c |
9803 | 116 |
117 # | |
118 # don't know what to do with these yet... | |
119 # | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
120 # $(BLD)\sorted-doc.exe: $(BLD)\sorted-doc.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
121 # $(BLD)\yow.exe: $(BLD)\yow.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
122 # $(BLD)\emacstool.exe: $(BLD)\emacstool.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
123 # $(BLD)\leditcfns.exe: $(BLD)\leditcfns.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
124 # $(BLD)\server.exe: $(BLD)\server.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
125 # $(BLD)\cvtmail.exe: $(BLD)\cvtmail.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
126 # $(BLD)\digest-doc.exe: $(BLD)\digest-doc.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
127 # $(BLD)\emacsclient.exe: $(BLD)\emacsclient.obj |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
128 # $(BLD)\test-distrib.exe: $(BLD)\test-distrib.obj |
9803 | 129 |
130 # | |
11939 | 131 # From ..\src\makefile.nt. |
9803 | 132 # |
21595
31ec89e86c0b
(obj): Update with new files in src.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19693
diff
changeset
|
133 obj = abbrev.c alloc.c alloca.c buffer.c bytecode.c callint.c callproc.c casefiddle.c cm.c cmds.c charset.c coding.c category.c ccl.c data.c dired.c dispnew.c doc.c doprnt.c editfns.c emacs.c eval.c fileio.c filelock.c filemode.c fns.c fontset.c indent.c insdel.c keyboard.c keymap.c lastfile.c lread.c macros.c marker.c minibuf.c xfaces.c mocklisp.c print.c process.c regex.c scroll.c search.c syntax.c sysdep.c term.c termcap.c tparam.c undo.c unexw32.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 w32.c w32console.c w32faces.c w32fns.c w32heap.c w32inevt.c w32proc.c w32reg.c w32menu.c w32select.c w32term.c w32xfns.c |
9803 | 134 |
135 # | |
136 # These are the lisp files that are loaded up in loadup.el | |
137 # | |
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
138 lispsource = ../lisp/ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
139 |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
140 FACE_SUPPORT = $(lispsource)facemenu.elc |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
141 MOUSE_SUPPORT = $(lispsource)select.elc $(lispsource)scroll-bar.elc |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
142 FLOAT_SUPPORT = $(lispsource)float-sup.elc |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
143 WINNT_SUPPORT = $(lispsource)ls-lisp.elc $(lispsource)w32-fns.elc $(lispsource)dos-w32.elc |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
144 |
9803 | 145 lisp= \ |
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
146 $(lispsource)abbrev.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
147 $(lispsource)buff-menu.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
148 $(lispsource)byte-run.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
149 $(lispsource)cus-start.el \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
150 $(lispsource)custom.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
151 $(lispsource)faces.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
152 $(lispsource)files.elc \ |
19231
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
153 $(lispsource)textmodes/fill.elc \ |
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
154 $(lispsource)format.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
155 $(FACE_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
156 $(MOUSE_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
157 $(FLOAT_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
158 $(lispsource)frame.elc\ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
159 $(X_WINDOWS_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
160 $(lispsource)help.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
161 $(lispsource)indent.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
162 $(lispsource)isearch.elc \ |
19231
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
163 $(lispsource)emacs-lisp/lisp-mode.elc \ |
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
164 $(lispsource)emacs-lisp/lisp.elc \ |
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
165 $(lispsource)loadup.el \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
166 $(lispsource)loaddefs.el \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
167 $(lispsource)map-ynp.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
168 $(lispsource)menu-bar.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
169 $(lispsource)international/mule.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
170 $(lispsource)international/mule-conf.el \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
171 $(lispsource)international/mule-cmds.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
172 $(lispsource)international/characters.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
173 $(lispsource)language/chinese.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
174 $(lispsource)language/cyrillic.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
175 $(lispsource)language/devanagari.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
176 $(lispsource)language/english.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
177 $(lispsource)language/ethiopic.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
178 $(lispsource)language/european.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
179 $(lispsource)language/greek.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
180 $(lispsource)language/hebrew.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
181 $(lispsource)language/indian.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
182 $(lispsource)language/japanese.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
183 $(lispsource)language/korean.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
184 $(lispsource)language/lao.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
185 $(lispsource)language/thai.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
186 $(lispsource)language/tibetan.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
187 $(lispsource)language/vietnamese.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
188 $(lispsource)language/misc-lang.elc \ |
19231
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
189 $(lispsource)textmodes/page.elc \ |
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
190 $(lispsource)textmodes/paragraphs.elc \ |
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
191 $(lispsource)paths.el \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
192 $(lispsource)register.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
193 $(lispsource)replace.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
194 $(lispsource)simple.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
195 $(lispsource)startup.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
196 $(lispsource)subr.elc \ |
19231
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
197 $(lispsource)textmodes/text-mode.elc \ |
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
198 $(lispsource)vc-hooks.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
199 $(lispsource)ediff-hook.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
200 $(VMS_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
201 $(MSDOS_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
202 $(WINNT_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
203 $(lispsource)window.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
204 $(lispsource)version.el |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
205 |
9803 | 206 |
207 DOC = DOC | |
208 $(DOC): $(BLD)\make-docfile.exe | |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
209 - $(DEL) $(DOC) |
9803 | 210 $(BLD)\make-docfile -d ..\src $(obj) > $(DOC) |
211 $(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
|
212 $(CP) $(DOC) ..\etc\DOC-X |
9803 | 213 - mkdir ..\src\$(OBJDIR) |
214 - mkdir ..\src\$(OBJDIR)\etc | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
215 $(CP) $(DOC) ..\src\$(OBJDIR)\etc\DOC-X |
9803 | 216 |
217 {$(BLD)}.obj{$(BLD)}.exe: | |
218 $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) | |
219 | |
220 .c{$(BLD)}.obj: | |
221 $(CC) $(CFLAGS) -Fo$@ $< | |
222 | |
223 # | |
224 # Build the executables | |
225 # | |
226 all: $(BLD) $(ALL) $(DOC) | |
227 | |
228 # | |
229 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
230 # | |
231 INSTALL_FILES = $(ALL) | |
232 install: $(INSTALL_FILES) | |
233 - mkdir $(INSTALL_DIR)\bin | |
234 $(CP) $(BLD)\etags.exe $(INSTALL_DIR)\bin | |
235 $(CP) $(BLD)\ctags.exe $(INSTALL_DIR)\bin | |
236 $(CP) $(BLD)\hexl.exe $(INSTALL_DIR)\bin | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
237 $(CP) $(BLD)\movemail.exe $(INSTALL_DIR)\bin |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
238 $(CP) $(BLD)\fakemail.exe $(INSTALL_DIR)\bin |
9803 | 239 - mkdir $(INSTALL_DIR)\etc |
240 $(CP) $(DOC) $(INSTALL_DIR)\etc | |
241 | |
242 # | |
243 # Maintenance | |
244 # | |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
245 clean:; - $(DEL) *~ *.pdb DOC* |
21595
31ec89e86c0b
(obj): Update with new files in src.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19693
diff
changeset
|
246 - $(DEL) *.orig *.rej *.crlf ctags.c |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
247 - $(DEL_TREE) deleted |
21595
31ec89e86c0b
(obj): Update with new files in src.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19693
diff
changeset
|
248 - $(DEL_TREE) obj |
31ec89e86c0b
(obj): Update with new files in src.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19693
diff
changeset
|
249 - $(DEL_TREE) obj-spd |
9803 | 250 |
251 # | |
252 # Headers we would preprocess if we could. | |
253 # | |
11939 | 254 ..\src\config.h: ..\nt\$(CONFIG_H) |
255 $(CP) $** $@ | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
256 ..\src\paths.h: ..\nt\paths.h |
11939 | 257 $(CP) $** $@ |
9803 | 258 |
259 ### DEPENDENCIES ### | |
260 | |
261 EMACS_ROOT = .. | |
262 SRC = . | |
263 | |
264 $(BLD)\alloca.obj : \ | |
265 $(SRC)\alloca.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
266 $(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
|
267 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 268 $(EMACS_ROOT)\src\config.h \ |
269 $(EMACS_ROOT)\src\blockinput.h | |
270 | |
271 $(BLD)\b2m.obj : \ | |
272 $(SRC)\b2m.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
273 $(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
|
274 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 275 $(EMACS_ROOT)\lib-src\..\src\config.h |
276 | |
19231
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
277 $(BLD)\ctags.obj : \ |
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
278 $(SRC)\ctags.c \ |
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
279 $(EMACS_ROOT)\nt\inc\sys\param.h \ |
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
280 $(EMACS_ROOT)\src\s\ms-w32.h \ |
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
281 $(EMACS_ROOT)\src\m\intel386.h \ |
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
282 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
283 $(SRC)\ntlib.h \ |
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
284 $(SRC)\getopt.h |
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
285 |
9803 | 286 $(BLD)\cvtmail.obj : \ |
287 $(SRC)\cvtmail.c | |
288 | |
289 $(BLD)\digest-doc.obj : \ | |
290 $(SRC)\digest-doc.c | |
291 | |
292 $(BLD)\emacsclient.obj : \ | |
293 $(SRC)\emacsclient.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
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)\lib-src\..\src\config.h |
297 | |
298 $(BLD)\emacsserver.obj : \ | |
299 $(SRC)\emacsserver.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
300 $(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
|
301 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 302 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
303 $(EMACS_ROOT)\nt\inc\sys\file.h | |
304 | |
305 $(BLD)\emacstool.obj : \ | |
306 $(SRC)\emacstool.c \ | |
307 $(EMACS_ROOT)\nt\inc\sys\file.h | |
308 | |
309 $(BLD)\etags.obj : \ | |
310 $(SRC)\etags.c \ | |
311 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
312 $(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
|
313 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 314 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
19231
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
315 $(SRC)\ntlib.h \ |
9803 | 316 $(SRC)\getopt.h |
317 | |
318 $(BLD)\fakemail.obj : \ | |
319 $(SRC)\fakemail.c \ | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
320 $(SRC)\ntlib.h \ |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
321 $(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
|
322 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 323 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
324 $(EMACS_ROOT)\nt\inc\pwd.h | |
325 | |
326 $(BLD)\getdate.obj : \ | |
327 $(SRC)\getdate.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
328 $(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
|
329 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 330 $(EMACS_ROOT)\src\config.h \ |
331 $(MSTOOLS_SYS)\types.h | |
332 | |
333 $(BLD)\getopt.obj : \ | |
334 $(SRC)\getopt.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
335 $(EMACS_ROOT)\src\s\ms-w32.h \ |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
336 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 337 $(EMACS_ROOT)\src\config.h \ |
19231
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
338 $(SRC)\ntlib.h \ |
9803 | 339 $(SRC)\getopt.h |
340 | |
341 $(BLD)\getopt1.obj : \ | |
342 $(SRC)\getopt1.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
343 $(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
|
344 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 345 $(EMACS_ROOT)\src\config.h \ |
346 $(SRC)\getopt.h | |
347 | |
348 $(BLD)\hexl.obj : \ | |
349 $(SRC)\hexl.c | |
350 | |
351 $(BLD)\leditcfns.obj : \ | |
352 $(SRC)\leditcfns.c | |
353 | |
354 $(BLD)\make-docfile.obj : \ | |
11939 | 355 $(SRC)\make-docfile.c \ |
356 $(EMACS_ROOT)\src\config.h | |
9803 | 357 |
358 $(BLD)\make-path.obj : \ | |
359 $(SRC)\make-path.c | |
360 | |
361 $(BLD)\movemail.obj : \ | |
362 $(SRC)\movemail.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
363 $(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
|
364 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 365 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
366 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
367 $(EMACS_ROOT)\src\vmsproc.h \ | |
368 $(EMACS_ROOT)\lib-src\..\src\syswait.h \ | |
19231
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
369 $(EMACS_ROOT)\nt\inc\pwd.h \ |
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
370 $(SRC)\ntlib.h |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
371 $(CC) $(CFLAGS) -DUSG -Fo$@ movemail.c |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
372 |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
373 $(BLD)\ntlib.obj : \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
374 $(SRC)\ntlib.c \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
375 $(SRC)\ntlib.h \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
376 $(EMACS_ROOT)\nt\inc\pwd.h |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
377 |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
378 $(BLD)\pop.obj : \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
379 $(SRC)\pop.c \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
380 $(SRC)\pop.h \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
381 $(SRC)\ntlib.h |
9803 | 382 |
383 $(BLD)\profile.obj : \ | |
384 $(SRC)\profile.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
385 $(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
|
386 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 387 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
388 $(EMACS_ROOT)\src\vmstime.h \ | |
389 $(EMACS_ROOT)\lib-src\..\src\systime.h | |
390 | |
391 $(BLD)\qsort.obj : \ | |
392 $(SRC)\qsort.c | |
393 | |
394 $(BLD)\sorted-doc.obj : \ | |
395 $(SRC)\sorted-doc.c | |
396 | |
397 $(BLD)\tcp.obj : \ | |
398 $(SRC)\tcp.c | |
399 | |
400 $(BLD)\test-distrib.obj : \ | |
401 $(SRC)\test-distrib.c | |
402 | |
403 $(BLD)\timer.obj : \ | |
404 $(SRC)\timer.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
405 $(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
|
406 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 407 $(EMACS_ROOT)\lib-src\..\src\config.h |
408 | |
409 $(BLD)\yow.obj : \ | |
410 $(SRC)\yow.c \ | |
411 $(EMACS_ROOT)\lib-src\..\src\paths.h |