Mercurial > emacs
annotate lib-src/makefile.nt @ 39437:cd28910ebc9a EMACS_PRETEST_21_0_106
*** empty log message ***
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Tue, 25 Sep 2001 10:34:41 +0000 |
| parents | 02a61d02d766 |
| children | b58336059062 |
| 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 \ |
| 29562 | 37 $(BLD)\ebrowse.exe \ |
|
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
38 $(BLD)\movemail.exe \ |
|
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
39 $(BLD)\fakemail.exe \ |
| 9803 | 40 |
|
27621
e4461431c046
(ETAGSOBJ): Remove reference to obsolete alloca.obj.
Andrew Innes <andrewi@gnu.org>
parents:
24444
diff
changeset
|
41 |
| 9803 | 42 # don't know what (if) to do with these yet... |
| 43 # | |
| 44 # $(BLD)\sorted-doc.exe \ | |
| 45 # $(BLD)\env.exe \ | |
| 46 # $(BLD)\server.exe \ | |
| 47 # $(BLD)\emacstool.exe \ | |
| 48 # $(BLD)\leditcfns.exe \ | |
| 49 # $(BLD)\emacsclient.exe \ | |
| 50 # $(BLD)\cvtmail.exe \ | |
| 51 # $(BLD)\digest-doc.exe \ | |
| 52 # $(BLD)\test-distrib.exe \ | |
| 53 | |
| 54 | |
| 11939 | 55 LIBS = $(BASE_LIBS) |
| 9803 | 56 |
|
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
57 $(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
|
58 $(LINK) -out:$@ $(LINK_FLAGS) $(BLD)\make-docfile.obj $(BLD)\ntlib.obj $(LIBS) |
| 11939 | 59 $(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
|
60 $(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
|
61 $(LINK) -out:$@ $(LINK_FLAGS) -debug:full $(BLD)\fakemail.obj $(BLD)\ntlib.obj $(LIBS) |
| 9803 | 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 etags: $(BLD) $(BLD)\etags.exe |
| 29562 | 65 ebrowse: $(BLD) $(BLD)\ebrowse.exe |
|
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
66 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
|
67 movemail: $(BLD) $(BLD)\movemail.exe |
|
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
68 fakemail: $(BLD) $(BLD)\fakemail.exe |
| 9803 | 69 |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
70 GETOPTOBJS = $(BLD)\getopt.obj $(BLD)\getopt1.obj |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
71 GETOPTDEPS = $(GETOPTOBJS) getopt.h |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
72 MOVEMAILOBJS = $(BLD)\movemail.obj \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
73 $(BLD)\pop.obj \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
74 $(BLD)\ntlib.obj \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
75 $(GETOPTOBJS) |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
76 |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
77 $(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
|
78 # 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
|
79 $(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
|
80 |
| 9803 | 81 ETAGSOBJ = $(BLD)\etags.obj \ |
| 82 $(BLD)\getopt.obj \ | |
| 83 $(BLD)\getopt1.obj \ | |
|
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
84 $(BLD)\ntlib.obj \ |
|
27621
e4461431c046
(ETAGSOBJ): Remove reference to obsolete alloca.obj.
Andrew Innes <andrewi@gnu.org>
parents:
24444
diff
changeset
|
85 $(BLD)\regex.obj |
|
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
86 |
|
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
87 |
|
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
88 $(BLD)\etags.exe: $(ETAGSOBJ) |
|
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
89 $(LINK) -out:$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS) |
|
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 |
|
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
92 $(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
|
93 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \ |
|
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
94 ../src/regex.c -Fo$@ |
|
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
95 |
|
15408
74032d1d3223
(ETAGS_CFLAGS): Define HAVE_GETCWD macro.
Richard M. Stallman <rms@gnu.org>
parents:
15257
diff
changeset
|
96 ETAGS_CFLAGS = -DETAGS_REGEXPS -DHAVE_GETCWD |
|
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
97 $(BLD)\etags.obj: etags.c |
|
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
98 $(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
|
99 |
|
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
100 CTAGSOBJ = $(BLD)\ctags.obj \ |
|
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
101 $(BLD)\getopt.obj \ |
|
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
102 $(BLD)\getopt1.obj \ |
|
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
103 $(BLD)\ntlib.obj \ |
|
27621
e4461431c046
(ETAGSOBJ): Remove reference to obsolete alloca.obj.
Andrew Innes <andrewi@gnu.org>
parents:
24444
diff
changeset
|
104 $(BLD)\regex.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 |
| 29562 | 117 EBROWSE_OBJ = $(BLD)\ebrowse.obj \ |
| 118 $(BLD)\getopt.obj \ | |
| 119 $(BLD)\getopt1.obj \ | |
| 120 $(BLD)\ntlib.obj | |
| 121 | |
| 122 $(BLD)\ebrowse.exe: $(EBROWSE_OBJ) | |
| 123 $(LINK) -out:$@ $(LINK_FLAGS) $(EBROWSE_OBJ) $(LIBS) | |
| 124 | |
| 125 $(BLD)\ebrowse.obj: ebrowse.c ..\src\config.h | |
| 126 $(CC) $(CFLAGS) -DVERSION=\"$(VERSION)\" -Fo$@ ebrowse.c | |
| 9803 | 127 # |
| 128 # don't know what to do with these yet... | |
| 129 # | |
|
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
130 # $(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
|
131 # $(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
|
132 # $(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
|
133 # $(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
|
134 # $(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
|
135 # $(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
|
136 # $(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
|
137 # $(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
|
138 # $(BLD)\test-distrib.exe: $(BLD)\test-distrib.obj |
| 9803 | 139 |
| 140 # | |
| 11939 | 141 # From ..\src\makefile.nt. |
| 9803 | 142 # |
|
21595
31ec89e86c0b
(obj): Update with new files in src.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19693
diff
changeset
|
143 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 | 144 |
| 145 # | |
| 146 # These are the lisp files that are loaded up in loadup.el | |
| 147 # | |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
148 lispsource = ../lisp/ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
149 |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
150 FACE_SUPPORT = $(lispsource)facemenu.elc |
|
39009
02a61d02d766
(lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents:
36308
diff
changeset
|
151 MOUSE_SUPPORT = $(lispsource)select.elc $(lispsource)scroll-bar.elc $(lispsource)mouse.elc |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
152 FLOAT_SUPPORT = $(lispsource)float-sup.elc |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
153 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
|
154 |
| 9803 | 155 lisp= \ |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
156 $(lispsource)abbrev.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
157 $(lispsource)buff-menu.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
158 $(lispsource)byte-run.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
159 $(lispsource)cus-start.el \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
160 $(lispsource)custom.elc \ |
|
39009
02a61d02d766
(lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents:
36308
diff
changeset
|
161 $(lispsource)disp-table.elc \ |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
162 $(lispsource)faces.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
163 $(lispsource)files.elc \ |
|
19231
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
164 $(lispsource)textmodes/fill.elc \ |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
165 $(lispsource)format.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
166 $(FACE_SUPPORT) \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
167 $(MOUSE_SUPPORT) \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
168 $(FLOAT_SUPPORT) \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
169 $(lispsource)frame.elc\ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
170 $(X_WINDOWS_SUPPORT) \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
171 $(lispsource)help.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
172 $(lispsource)indent.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
173 $(lispsource)isearch.elc \ |
|
19231
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
174 $(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
|
175 $(lispsource)emacs-lisp/lisp.elc \ |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
176 $(lispsource)loadup.el \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
177 $(lispsource)loaddefs.el \ |
|
39009
02a61d02d766
(lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents:
36308
diff
changeset
|
178 $(lispsource)bindings.el \ |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
179 $(lispsource)map-ynp.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
180 $(lispsource)menu-bar.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
181 $(lispsource)international/mule.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
182 $(lispsource)international/mule-conf.el \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
183 $(lispsource)international/mule-cmds.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
184 $(lispsource)international/characters.elc \ |
|
39009
02a61d02d766
(lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents:
36308
diff
changeset
|
185 $(lispsource)international/ccl.elc \ |
|
02a61d02d766
(lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents:
36308
diff
changeset
|
186 $(lispsource)international/codepage.elc \ |
|
02a61d02d766
(lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents:
36308
diff
changeset
|
187 $(lispsource)international/utf-8.elc \ |
|
02a61d02d766
(lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents:
36308
diff
changeset
|
188 $(lispsource)case-table.elc \ |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
189 $(lispsource)language/chinese.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
190 $(lispsource)language/cyrillic.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
191 $(lispsource)language/devanagari.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
192 $(lispsource)language/english.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
193 $(lispsource)language/ethiopic.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
194 $(lispsource)language/european.elc \ |
|
39009
02a61d02d766
(lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents:
36308
diff
changeset
|
195 $(lispsource)language/czech.elc \ |
|
02a61d02d766
(lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents:
36308
diff
changeset
|
196 $(lispsource)language/slovak.elc \ |
|
02a61d02d766
(lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents:
36308
diff
changeset
|
197 $(lispsource)language/romanian.elc \ |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
198 $(lispsource)language/greek.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
199 $(lispsource)language/hebrew.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
200 $(lispsource)language/indian.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
201 $(lispsource)language/japanese.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
202 $(lispsource)language/korean.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
203 $(lispsource)language/lao.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
204 $(lispsource)language/thai.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
205 $(lispsource)language/tibetan.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
206 $(lispsource)language/vietnamese.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
207 $(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
|
208 $(lispsource)textmodes/page.elc \ |
|
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
209 $(lispsource)textmodes/paragraphs.elc \ |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
210 $(lispsource)paths.el \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
211 $(lispsource)register.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
212 $(lispsource)replace.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
213 $(lispsource)simple.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
214 $(lispsource)startup.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
215 $(lispsource)subr.elc \ |
|
39009
02a61d02d766
(lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents:
36308
diff
changeset
|
216 $(lispsource)term/tty-colors.elc \ |
|
19231
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
217 $(lispsource)textmodes/text-mode.elc \ |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
218 $(lispsource)vc-hooks.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
219 $(lispsource)ediff-hook.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
220 $(VMS_SUPPORT) \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
221 $(MSDOS_SUPPORT) \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
222 $(WINNT_SUPPORT) \ |
|
39009
02a61d02d766
(lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents:
36308
diff
changeset
|
223 $(lispsource)widget.elc \ |
|
18509
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
224 $(lispsource)window.elc \ |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
225 $(lispsource)version.el |
|
53283f486cde
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents:
17546
diff
changeset
|
226 |
| 9803 | 227 |
| 228 DOC = DOC | |
| 229 $(DOC): $(BLD)\make-docfile.exe | |
|
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
230 - $(DEL) $(DOC) |
| 9803 | 231 $(BLD)\make-docfile -d ..\src $(obj) > $(DOC) |
| 232 $(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
|
233 $(CP) $(DOC) ..\etc\DOC-X |
| 9803 | 234 - mkdir ..\src\$(OBJDIR) |
| 235 - mkdir ..\src\$(OBJDIR)\etc | |
|
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
236 $(CP) $(DOC) ..\src\$(OBJDIR)\etc\DOC-X |
| 9803 | 237 |
| 238 {$(BLD)}.obj{$(BLD)}.exe: | |
| 239 $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) | |
| 240 | |
| 241 # | |
| 242 # Build the executables | |
| 243 # | |
| 244 all: $(BLD) $(ALL) $(DOC) | |
| 245 | |
| 246 # | |
| 247 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
| 248 # | |
| 249 INSTALL_FILES = $(ALL) | |
| 250 install: $(INSTALL_FILES) | |
| 251 - mkdir $(INSTALL_DIR)\bin | |
| 252 $(CP) $(BLD)\etags.exe $(INSTALL_DIR)\bin | |
| 253 $(CP) $(BLD)\ctags.exe $(INSTALL_DIR)\bin | |
| 254 $(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
|
255 $(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
|
256 $(CP) $(BLD)\fakemail.exe $(INSTALL_DIR)\bin |
| 9803 | 257 - mkdir $(INSTALL_DIR)\etc |
| 258 $(CP) $(DOC) $(INSTALL_DIR)\etc | |
| 259 | |
| 260 # | |
| 261 # Maintenance | |
| 262 # | |
|
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
263 clean:; - $(DEL) *~ *.pdb DOC* |
|
21595
31ec89e86c0b
(obj): Update with new files in src.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19693
diff
changeset
|
264 - $(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
|
265 - $(DEL_TREE) deleted |
|
21595
31ec89e86c0b
(obj): Update with new files in src.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19693
diff
changeset
|
266 - $(DEL_TREE) obj |
|
31ec89e86c0b
(obj): Update with new files in src.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19693
diff
changeset
|
267 - $(DEL_TREE) obj-spd |
| 9803 | 268 |
| 269 # | |
| 270 # Headers we would preprocess if we could. | |
| 271 # | |
| 11939 | 272 ..\src\config.h: ..\nt\$(CONFIG_H) |
| 273 $(CP) $** $@ | |
|
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
274 ..\src\paths.h: ..\nt\paths.h |
| 11939 | 275 $(CP) $** $@ |
| 9803 | 276 |
| 277 ### DEPENDENCIES ### | |
| 278 | |
| 279 EMACS_ROOT = .. | |
| 280 SRC = . | |
| 281 | |
| 282 $(BLD)\b2m.obj : \ | |
| 283 $(SRC)\b2m.c \ | |
|
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
284 $(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
|
285 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 286 $(EMACS_ROOT)\lib-src\..\src\config.h |
| 287 | |
|
19231
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
288 $(BLD)\ctags.obj : \ |
|
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
289 $(SRC)\ctags.c \ |
|
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
290 $(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
|
291 $(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
|
292 $(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
|
293 $(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
|
294 $(SRC)\ntlib.h \ |
|
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
295 $(SRC)\getopt.h |
|
454f881f60ef
(lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18509
diff
changeset
|
296 |
| 9803 | 297 $(BLD)\cvtmail.obj : \ |
| 298 $(SRC)\cvtmail.c | |
| 299 | |
| 300 $(BLD)\digest-doc.obj : \ | |
| 301 $(SRC)\digest-doc.c | |
| 302 | |
| 303 $(BLD)\emacsclient.obj : \ | |
| 304 $(SRC)\emacsclient.c \ | |
|
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
305 $(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
|
306 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 307 $(EMACS_ROOT)\lib-src\..\src\config.h |
| 308 | |
| 309 $(BLD)\emacsserver.obj : \ | |
| 310 $(SRC)\emacsserver.c \ | |
|
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
311 $(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
|
312 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 313 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
| 314 $(EMACS_ROOT)\nt\inc\sys\file.h | |
| 315 | |
| 316 $(BLD)\emacstool.obj : \ | |
| 317 $(SRC)\emacstool.c \ | |
| 318 $(EMACS_ROOT)\nt\inc\sys\file.h | |
| 319 | |
| 320 $(BLD)\etags.obj : \ | |
| 321 $(SRC)\etags.c \ | |
| 322 $(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
|
323 $(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
|
324 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 325 $(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
|
326 $(SRC)\ntlib.h \ |
| 9803 | 327 $(SRC)\getopt.h |
| 328 | |
| 329 $(BLD)\fakemail.obj : \ | |
| 330 $(SRC)\fakemail.c \ | |
|
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
331 $(SRC)\ntlib.h \ |
|
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
332 $(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
|
333 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 334 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
| 335 $(EMACS_ROOT)\nt\inc\pwd.h | |
| 336 | |
| 337 $(BLD)\getdate.obj : \ | |
| 338 $(SRC)\getdate.c \ | |
|
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
339 $(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
|
340 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 341 $(EMACS_ROOT)\src\config.h \ |
| 342 $(MSTOOLS_SYS)\types.h | |
| 343 | |
| 344 $(BLD)\getopt.obj : \ | |
| 345 $(SRC)\getopt.c \ | |
|
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
346 $(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
|
347 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 348 $(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
|
349 $(SRC)\ntlib.h \ |
| 9803 | 350 $(SRC)\getopt.h |
| 351 | |
| 352 $(BLD)\getopt1.obj : \ | |
| 353 $(SRC)\getopt1.c \ | |
|
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
354 $(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
|
355 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 356 $(EMACS_ROOT)\src\config.h \ |
| 357 $(SRC)\getopt.h | |
| 358 | |
| 359 $(BLD)\hexl.obj : \ | |
| 360 $(SRC)\hexl.c | |
| 361 | |
| 362 $(BLD)\leditcfns.obj : \ | |
| 363 $(SRC)\leditcfns.c | |
| 364 | |
| 365 $(BLD)\make-docfile.obj : \ | |
| 11939 | 366 $(SRC)\make-docfile.c \ |
| 367 $(EMACS_ROOT)\src\config.h | |
| 9803 | 368 |
| 369 $(BLD)\make-path.obj : \ | |
| 370 $(SRC)\make-path.c | |
| 371 | |
| 372 $(BLD)\movemail.obj : \ | |
| 373 $(SRC)\movemail.c \ | |
|
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
374 $(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
|
375 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 376 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
| 377 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 378 $(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
|
379 $(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
|
380 $(SRC)\ntlib.h |
|
15137
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
381 $(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
|
382 |
|
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
383 $(BLD)\ntlib.obj : \ |
|
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
384 $(SRC)\ntlib.c \ |
|
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
385 $(SRC)\ntlib.h \ |
|
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
386 $(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
|
387 |
|
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
388 $(BLD)\pop.obj : \ |
|
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
389 $(SRC)\pop.c \ |
|
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
390 $(SRC)\pop.h \ |
|
74c840c2f577
(LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14981
diff
changeset
|
391 $(SRC)\ntlib.h |
| 9803 | 392 |
| 393 $(BLD)\profile.obj : \ | |
| 394 $(SRC)\profile.c \ | |
|
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
395 $(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
|
396 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 397 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
| 398 $(EMACS_ROOT)\lib-src\..\src\systime.h | |
| 399 | |
| 400 $(BLD)\qsort.obj : \ | |
| 401 $(SRC)\qsort.c | |
| 402 | |
| 403 $(BLD)\sorted-doc.obj : \ | |
| 404 $(SRC)\sorted-doc.c | |
| 405 | |
| 406 $(BLD)\tcp.obj : \ | |
| 407 $(SRC)\tcp.c | |
| 408 | |
| 409 $(BLD)\test-distrib.obj : \ | |
| 410 $(SRC)\test-distrib.c | |
| 411 | |
| 412 $(BLD)\timer.obj : \ | |
| 413 $(SRC)\timer.c \ | |
|
17546
0128001981c3
Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16025
diff
changeset
|
414 $(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
|
415 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 416 $(EMACS_ROOT)\lib-src\..\src\config.h |
| 417 | |
| 418 $(BLD)\yow.obj : \ | |
| 419 $(SRC)\yow.c \ | |
| 420 $(EMACS_ROOT)\lib-src\..\src\paths.h |
