Mercurial > emacs
annotate lib-src/makefile.nt @ 18999:4d5237dec736 libc-970727 libc-970728
Recognize SunOS 3.x.
author | Per Bothner <bothner@cygnus.com> |
---|---|
date | Sat, 26 Jul 1997 19:01:01 +0000 |
parents | 53283f486cde |
children | 454f881f60ef |
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 | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
28 LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 -DNO_ARCHIVES=1 -I..\nt\inc -I..\src |
9803 | 29 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
30 LINK_FLAGS = $(ARCH_LDFLAGS) -debug:PARTIAL -machine:$(ARCH) -subsystem:console -entry:mainCRTStartup setargv.obj |
9803 | 31 |
32 ALL = $(BLD)\make-docfile.exe \ | |
33 $(BLD)\hexl.exe \ | |
34 $(BLD)\ctags.exe \ | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
35 $(BLD)\etags.exe \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
36 $(BLD)\movemail.exe \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
37 $(BLD)\fakemail.exe \ |
9803 | 38 |
39 | |
40 # don't know what (if) to do with these yet... | |
41 # | |
42 # $(BLD)\sorted-doc.exe \ | |
43 # $(BLD)\env.exe \ | |
44 # $(BLD)\server.exe \ | |
45 # $(BLD)\emacstool.exe \ | |
46 # $(BLD)\leditcfns.exe \ | |
47 # $(BLD)\emacsclient.exe \ | |
48 # $(BLD)\cvtmail.exe \ | |
49 # $(BLD)\digest-doc.exe \ | |
50 # $(BLD)\test-distrib.exe \ | |
51 | |
52 | |
11939 | 53 LIBS = $(BASE_LIBS) |
9803 | 54 |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
55 $(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
|
56 $(LINK) -out:$@ $(LINK_FLAGS) $(BLD)\make-docfile.obj $(BLD)\ntlib.obj $(LIBS) |
11939 | 57 $(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
|
58 $(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
|
59 $(LINK) -out:$@ $(LINK_FLAGS) -debug:full $(BLD)\fakemail.obj $(BLD)\ntlib.obj $(LIBS) |
9803 | 60 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
61 make-docfile: $(BLD) $(BLD)\make-docfile.exe |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
62 etags: $(BLD) $(BLD)\etags.exe |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
63 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
|
64 movemail: $(BLD) $(BLD)\movemail.exe |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
65 fakemail: $(BLD) $(BLD)\fakemail.exe |
9803 | 66 |
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
67 GETOPTOBJS = $(BLD)\getopt.obj $(BLD)\getopt1.obj |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
68 GETOPTDEPS = $(GETOPTOBJS) getopt.h |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
69 MOVEMAILOBJS = $(BLD)\movemail.obj \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
70 $(BLD)\pop.obj \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
71 $(BLD)\ntlib.obj \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
72 $(GETOPTOBJS) |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
73 |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
74 $(BLD)\movemail.exe: $(MOVEMAILOBJS) getopt.h |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
75 $(LINK) -out:$@ $(LINK_FLAGS) -debug:FULL $(MOVEMAILOBJS) $(LIBS) wsock32.lib |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
76 |
9803 | 77 ETAGSOBJ = $(BLD)\etags.obj \ |
78 $(BLD)\getopt.obj \ | |
79 $(BLD)\getopt1.obj \ | |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
80 $(BLD)\ntlib.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
81 $(BLD)\regex.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
82 $(BLD)\alloca.obj |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
83 |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
84 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
85 $(BLD)\etags.exe: $(ETAGSOBJ) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
86 $(LINK) -out:$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
87 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
88 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
89 $(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
|
90 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
91 ../src/regex.c -Fo$@ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
92 |
15408
74032d1d3223
(ETAGS_CFLAGS): Define HAVE_GETCWD macro.
Richard M. Stallman <rms@gnu.org>
parents:
15257
diff
changeset
|
93 ETAGS_CFLAGS = -DETAGS_REGEXPS -DHAVE_GETCWD |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
94 $(BLD)\etags.obj: etags.c |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
95 $(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
|
96 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
97 CTAGSOBJ = $(BLD)\ctags.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
98 $(BLD)\getopt.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
99 $(BLD)\getopt1.obj \ |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
100 $(BLD)\ntlib.obj \ |
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
101 $(BLD)\regex.obj \ |
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
102 $(BLD)\alloca.obj |
9803 | 103 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
104 $(BLD)\ctags.exe: ctags.c $(CTAGSOBJ) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
105 $(LINK) -out:$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
106 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
107 ctags.c: etags.c |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
108 - $(DEL) ctags.c |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
109 copy etags.c ctags.c |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
110 |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
111 CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS) |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
112 $(BLD)\ctags.obj: ctags.c |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
113 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) -Fo$@ ctags.c |
9803 | 114 |
115 # | |
116 # don't know what to do with these yet... | |
117 # | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
118 # $(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
|
119 # $(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
|
120 # $(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
|
121 # $(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
|
122 # $(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
|
123 # $(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
|
124 # $(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
|
125 # $(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
|
126 # $(BLD)\test-distrib.exe: $(BLD)\test-distrib.obj |
9803 | 127 |
128 # | |
11939 | 129 # From ..\src\makefile.nt. |
9803 | 130 # |
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
131 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 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 | 132 |
133 # | |
134 # These are the lisp files that are loaded up in loadup.el | |
135 # | |
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
136 lispsource = ../lisp/ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
137 |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
138 FACE_SUPPORT = $(lispsource)facemenu.elc |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
139 MOUSE_SUPPORT = $(lispsource)select.elc $(lispsource)scroll-bar.elc |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
140 FLOAT_SUPPORT = $(lispsource)float-sup.elc |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
141 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
|
142 |
9803 | 143 lisp= \ |
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
144 $(lispsource)abbrev.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
145 $(lispsource)buff-menu.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
146 $(lispsource)byte-run.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
147 $(lispsource)cus-start.el \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
148 $(lispsource)custom.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
149 $(lispsource)faces.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
150 $(lispsource)files.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
151 $(lispsource)fill.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
152 $(lispsource)format.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
153 $(FACE_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
154 $(MOUSE_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
155 $(FLOAT_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
156 $(lispsource)frame.elc\ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
157 $(X_WINDOWS_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
158 $(lispsource)help.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
159 $(lispsource)indent.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
160 $(lispsource)isearch.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
161 $(lispsource)lisp-mode.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
162 $(lispsource)lisp.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
163 $(lispsource)loadup.el \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
164 $(lispsource)loaddefs.el \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
165 $(lispsource)map-ynp.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
166 $(lispsource)menu-bar.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
167 $(lispsource)international/mule.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
168 $(lispsource)international/mule-conf.el \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
169 $(lispsource)international/mule-cmds.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
170 $(lispsource)international/characters.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
171 $(lispsource)language/chinese.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
172 $(lispsource)language/cyrillic.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
173 $(lispsource)language/devanagari.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
174 $(lispsource)language/english.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
175 $(lispsource)language/ethiopic.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
176 $(lispsource)language/european.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
177 $(lispsource)language/greek.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
178 $(lispsource)language/hebrew.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
179 $(lispsource)language/indian.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
180 $(lispsource)language/japanese.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
181 $(lispsource)language/korean.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
182 $(lispsource)language/lao.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
183 $(lispsource)language/thai.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
184 $(lispsource)language/tibetan.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
185 $(lispsource)language/vietnamese.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
186 $(lispsource)language/misc-lang.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
187 $(lispsource)page.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
188 $(lispsource)paragraphs.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
189 $(lispsource)paths.el \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
190 $(lispsource)register.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
191 $(lispsource)replace.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
192 $(lispsource)simple.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
193 $(lispsource)startup.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
194 $(lispsource)subr.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
195 $(lispsource)text-mode.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
196 $(lispsource)vc-hooks.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
197 $(lispsource)ediff-hook.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
198 $(VMS_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
199 $(MSDOS_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
200 $(WINNT_SUPPORT) \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
201 $(lispsource)window.elc \ |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
202 $(lispsource)version.el |
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
203 |
9803 | 204 |
205 DOC = DOC | |
206 $(DOC): $(BLD)\make-docfile.exe | |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
207 - $(DEL) $(DOC) |
9803 | 208 $(BLD)\make-docfile -d ..\src $(obj) > $(DOC) |
209 $(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
|
210 $(CP) $(DOC) ..\etc\DOC-X |
9803 | 211 - mkdir ..\src\$(OBJDIR) |
212 - mkdir ..\src\$(OBJDIR)\etc | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
213 $(CP) $(DOC) ..\src\$(OBJDIR)\etc\DOC-X |
9803 | 214 |
215 {$(BLD)}.obj{$(BLD)}.exe: | |
216 $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) | |
217 | |
218 .c{$(BLD)}.obj: | |
219 $(CC) $(CFLAGS) -Fo$@ $< | |
220 | |
221 # | |
222 # Build the executables | |
223 # | |
224 all: $(BLD) $(ALL) $(DOC) | |
225 | |
226 # | |
227 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
228 # | |
229 INSTALL_FILES = $(ALL) | |
230 install: $(INSTALL_FILES) | |
231 - mkdir $(INSTALL_DIR)\bin | |
232 $(CP) $(BLD)\etags.exe $(INSTALL_DIR)\bin | |
233 $(CP) $(BLD)\ctags.exe $(INSTALL_DIR)\bin | |
234 $(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
|
235 $(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
|
236 $(CP) $(BLD)\fakemail.exe $(INSTALL_DIR)\bin |
9803 | 237 - mkdir $(INSTALL_DIR)\etc |
238 $(CP) $(DOC) $(INSTALL_DIR)\etc | |
239 | |
240 # | |
241 # Maintenance | |
242 # | |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
243 clean:; - $(DEL) *~ *.pdb DOC* |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
244 - $(DEL_TREE) deleted |
15722 | 245 - $(DEL_TREE) $(OBJDIR) |
9803 | 246 |
247 # | |
248 # Headers we would preprocess if we could. | |
249 # | |
11939 | 250 ..\src\config.h: ..\nt\$(CONFIG_H) |
251 $(CP) $** $@ | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
252 ..\src\paths.h: ..\nt\paths.h |
11939 | 253 $(CP) $** $@ |
9803 | 254 |
255 ### DEPENDENCIES ### | |
256 | |
257 EMACS_ROOT = .. | |
258 SRC = . | |
259 | |
260 $(BLD)\alloca.obj : \ | |
261 $(SRC)\alloca.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
262 $(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
|
263 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 264 $(EMACS_ROOT)\src\config.h \ |
265 $(EMACS_ROOT)\src\blockinput.h | |
266 | |
267 $(BLD)\b2m.obj : \ | |
268 $(SRC)\b2m.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
269 $(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
|
270 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 271 $(EMACS_ROOT)\lib-src\..\src\config.h |
272 | |
273 $(BLD)\cvtmail.obj : \ | |
274 $(SRC)\cvtmail.c | |
275 | |
276 $(BLD)\digest-doc.obj : \ | |
277 $(SRC)\digest-doc.c | |
278 | |
279 $(BLD)\emacsclient.obj : \ | |
280 $(SRC)\emacsclient.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
281 $(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
|
282 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 283 $(EMACS_ROOT)\lib-src\..\src\config.h |
284 | |
285 $(BLD)\emacsserver.obj : \ | |
286 $(SRC)\emacsserver.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
287 $(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
|
288 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 289 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
290 $(EMACS_ROOT)\nt\inc\sys\file.h | |
291 | |
292 $(BLD)\emacstool.obj : \ | |
293 $(SRC)\emacstool.c \ | |
294 $(EMACS_ROOT)\nt\inc\sys\file.h | |
295 | |
296 $(BLD)\etags.obj : \ | |
297 $(SRC)\etags.c \ | |
298 $(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
|
299 $(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
|
300 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 301 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
302 $(SRC)\getopt.h | |
303 | |
304 $(BLD)\fakemail.obj : \ | |
305 $(SRC)\fakemail.c \ | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
306 $(SRC)\ntlib.h \ |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
307 $(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
|
308 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 309 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
310 $(EMACS_ROOT)\nt\inc\pwd.h | |
311 | |
312 $(BLD)\getdate.obj : \ | |
313 $(SRC)\getdate.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
314 $(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
|
315 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 316 $(EMACS_ROOT)\src\config.h \ |
317 $(MSTOOLS_SYS)\types.h | |
318 | |
319 $(BLD)\getopt.obj : \ | |
320 $(SRC)\getopt.c \ | |
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)\src\config.h \ |
324 $(SRC)\getopt.h | |
325 | |
326 $(BLD)\getopt1.obj : \ | |
327 $(SRC)\getopt1.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 $(SRC)\getopt.h | |
332 | |
333 $(BLD)\hexl.obj : \ | |
334 $(SRC)\hexl.c | |
335 | |
336 $(BLD)\leditcfns.obj : \ | |
337 $(SRC)\leditcfns.c | |
338 | |
339 $(BLD)\make-docfile.obj : \ | |
11939 | 340 $(SRC)\make-docfile.c \ |
341 $(EMACS_ROOT)\src\config.h | |
9803 | 342 |
343 $(BLD)\make-path.obj : \ | |
344 $(SRC)\make-path.c | |
345 | |
346 $(BLD)\movemail.obj : \ | |
347 $(SRC)\movemail.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
348 $(EMACS_ROOT)\src\s\ms-w32.h \ |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
349 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 350 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
351 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
352 $(EMACS_ROOT)\src\vmsproc.h \ | |
353 $(EMACS_ROOT)\lib-src\..\src\syswait.h \ | |
354 $(EMACS_ROOT)\nt\inc\pwd.h | |
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
355 $(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
|
356 |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
357 $(BLD)\ntlib.obj : \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
358 $(SRC)\ntlib.c \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
359 $(SRC)\ntlib.h \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
360 $(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
|
361 |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
362 $(BLD)\pop.obj : \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
363 $(SRC)\pop.c \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
364 $(SRC)\pop.h \ |
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
365 $(SRC)\ntlib.h |
9803 | 366 |
367 $(BLD)\profile.obj : \ | |
368 $(SRC)\profile.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
369 $(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
|
370 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 371 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
372 $(EMACS_ROOT)\src\vmstime.h \ | |
373 $(EMACS_ROOT)\lib-src\..\src\systime.h | |
374 | |
375 $(BLD)\qsort.obj : \ | |
376 $(SRC)\qsort.c | |
377 | |
378 $(BLD)\sorted-doc.obj : \ | |
379 $(SRC)\sorted-doc.c | |
380 | |
381 $(BLD)\tcp.obj : \ | |
382 $(SRC)\tcp.c | |
383 | |
384 $(BLD)\test-distrib.obj : \ | |
385 $(SRC)\test-distrib.c | |
386 | |
387 $(BLD)\timer.obj : \ | |
388 $(SRC)\timer.c \ | |
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
389 $(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
|
390 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 391 $(EMACS_ROOT)\lib-src\..\src\config.h |
392 | |
393 $(BLD)\yow.obj : \ | |
394 $(SRC)\yow.c \ | |
395 $(EMACS_ROOT)\lib-src\..\src\paths.h |