annotate lib-src/makefile.nt @ 42412:83c1951257f1

Include <config.h>.
author Pavel Janík <Pavel@Janik.cz>
date Sat, 29 Dec 2001 22:24:28 +0000
parents 26edff7f8f45
children d7435ace194f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 # Makefile for GNU Emacs lib-src directory.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2 # Geoff Voelker (voelker@cs.washington.edu)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3 # Copyright (C) 1994 Free Software Foundation, Inc.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 # This file is part of GNU Emacs.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 # GNU Emacs is free software; you can redistribute it and/or modify
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 # it under the terms of the GNU General Public License as published by
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 # the Free Software Foundation; either version 2, or (at your option)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 # any later version.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 # GNU Emacs is distributed in the hope that it will be useful,
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 # GNU General Public License for more details.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 # You should have received a copy of the GNU General Public License
15742
80562f089595 Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 15722
diff changeset
18 # along with GNU Emacs; see the file COPYING. If not, write to the
80562f089595 Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 15722
diff changeset
19 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
80562f089595 Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 15722
diff changeset
20 # Boston, MA 02111-1307, USA.
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24 # Sets up the system dependent macros.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26 !include ..\nt\makefile.def
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
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
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30
13930
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
31 LINK_FLAGS = $(ARCH_LDFLAGS) -debug:PARTIAL -machine:$(ARCH) -subsystem:console -entry:mainCRTStartup setargv.obj
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 ALL = $(BLD)\make-docfile.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 $(BLD)\hexl.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 $(BLD)\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
b67a9217ae02 Added targets for ebrowse.
Jason Rumney <jasonr@gnu.org>
parents: 27621
diff changeset
37 $(BLD)\ebrowse.exe \
39824
2bc11d598690 (ALL): Do not include fakemail.
Andrew Innes <andrewi@gnu.org>
parents: 39752
diff changeset
38 $(BLD)\movemail.exe
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39
27621
e4461431c046 (ETAGSOBJ): Remove reference to obsolete alloca.obj.
Andrew Innes <andrewi@gnu.org>
parents: 24444
diff changeset
40
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 # don't know what (if) to do with these yet...
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 # $(BLD)\sorted-doc.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 # $(BLD)\env.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 # $(BLD)\server.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 # $(BLD)\emacstool.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 # $(BLD)\leditcfns.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 # $(BLD)\emacsclient.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 # $(BLD)\cvtmail.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50 # $(BLD)\digest-doc.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51 # $(BLD)\test-distrib.exe \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
52
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53
11939
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
54 LIBS = $(BASE_LIBS)
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
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
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
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
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
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
29562
b67a9217ae02 Added targets for ebrowse.
Jason Rumney <jasonr@gnu.org>
parents: 27621
diff changeset
64 ebrowse: $(BLD) $(BLD)\ebrowse.exe
13930
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
65 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
66 movemail: $(BLD) $(BLD)\movemail.exe
74c840c2f577 (LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14981
diff changeset
67 fakemail: $(BLD) $(BLD)\fakemail.exe
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
68
18509
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
69 GETOPTOBJS = $(BLD)\getopt.obj $(BLD)\getopt1.obj
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
70 GETOPTDEPS = $(GETOPTOBJS) getopt.h
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
71 MOVEMAILOBJS = $(BLD)\movemail.obj \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
72 $(BLD)\pop.obj \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
73 $(BLD)\ntlib.obj \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
74 $(GETOPTOBJS)
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
75
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
76 $(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
77 # 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
78 $(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
79
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
80 ETAGSOBJ = $(BLD)\etags.obj \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81 $(BLD)\getopt.obj \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82 $(BLD)\getopt1.obj \
13930
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
83 $(BLD)\ntlib.obj \
27621
e4461431c046 (ETAGSOBJ): Remove reference to obsolete alloca.obj.
Andrew Innes <andrewi@gnu.org>
parents: 24444
diff changeset
84 $(BLD)\regex.obj
13930
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 \
27621
e4461431c046 (ETAGSOBJ): Remove reference to obsolete alloca.obj.
Andrew Innes <andrewi@gnu.org>
parents: 24444
diff changeset
103 $(BLD)\regex.obj
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104
13930
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
105 $(BLD)\ctags.exe: ctags.c $(CTAGSOBJ)
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
106 $(LINK) -out:$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS)
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
107
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
108 ctags.c: etags.c
14899
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 13930
diff changeset
109 - $(DEL) ctags.c
13930
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
110 copy etags.c ctags.c
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
111
14981
780fe9c87106 (CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
112 CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS)
13930
badba571804f (etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13631
diff changeset
113 $(BLD)\ctags.obj: ctags.c
14981
780fe9c87106 (CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
114 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) -Fo$@ ctags.c
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115
29562
b67a9217ae02 Added targets for ebrowse.
Jason Rumney <jasonr@gnu.org>
parents: 27621
diff changeset
116 EBROWSE_OBJ = $(BLD)\ebrowse.obj \
b67a9217ae02 Added targets for ebrowse.
Jason Rumney <jasonr@gnu.org>
parents: 27621
diff changeset
117 $(BLD)\getopt.obj \
b67a9217ae02 Added targets for ebrowse.
Jason Rumney <jasonr@gnu.org>
parents: 27621
diff changeset
118 $(BLD)\getopt1.obj \
b67a9217ae02 Added targets for ebrowse.
Jason Rumney <jasonr@gnu.org>
parents: 27621
diff changeset
119 $(BLD)\ntlib.obj
b67a9217ae02 Added targets for ebrowse.
Jason Rumney <jasonr@gnu.org>
parents: 27621
diff changeset
120
b67a9217ae02 Added targets for ebrowse.
Jason Rumney <jasonr@gnu.org>
parents: 27621
diff changeset
121 $(BLD)\ebrowse.exe: $(EBROWSE_OBJ)
b67a9217ae02 Added targets for ebrowse.
Jason Rumney <jasonr@gnu.org>
parents: 27621
diff changeset
122 $(LINK) -out:$@ $(LINK_FLAGS) $(EBROWSE_OBJ) $(LIBS)
b67a9217ae02 Added targets for ebrowse.
Jason Rumney <jasonr@gnu.org>
parents: 27621
diff changeset
123
b67a9217ae02 Added targets for ebrowse.
Jason Rumney <jasonr@gnu.org>
parents: 27621
diff changeset
124 $(BLD)\ebrowse.obj: ebrowse.c ..\src\config.h
b67a9217ae02 Added targets for ebrowse.
Jason Rumney <jasonr@gnu.org>
parents: 27621
diff changeset
125 $(CC) $(CFLAGS) -DVERSION=\"$(VERSION)\" -Fo$@ ebrowse.c
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
126 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 # don't know what to do with these yet...
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
128 #
15137
74c840c2f577 (LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14981
diff changeset
129 # $(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
130 # $(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
131 # $(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
132 # $(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
133 # $(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
134 # $(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
135 # $(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
136 # $(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
137 # $(BLD)\test-distrib.exe: $(BLD)\test-distrib.obj
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 #
11939
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
140 # From ..\src\makefile.nt.
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141 #
42279
26edff7f8f45 Remove mocklisp files.
Pavel Janík <Pavel@Janik.cz>
parents: 39824
diff changeset
142 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 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
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
145 # These are the lisp files that are loaded up in loadup.el
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 #
18509
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
147 lispsource = ../lisp/
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
148
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
149 FACE_SUPPORT = $(lispsource)facemenu.elc
39009
02a61d02d766 (lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents: 36308
diff changeset
150 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
151 FLOAT_SUPPORT = $(lispsource)float-sup.elc
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
152 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
153
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154 lisp= \
18509
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
155 $(lispsource)abbrev.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
156 $(lispsource)buff-menu.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
157 $(lispsource)byte-run.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
158 $(lispsource)cus-start.el \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
159 $(lispsource)custom.elc \
39009
02a61d02d766 (lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents: 36308
diff changeset
160 $(lispsource)disp-table.elc \
18509
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
161 $(lispsource)faces.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
162 $(lispsource)files.elc \
19231
454f881f60ef (lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18509
diff changeset
163 $(lispsource)textmodes/fill.elc \
18509
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
164 $(lispsource)format.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
165 $(FACE_SUPPORT) \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
166 $(MOUSE_SUPPORT) \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
167 $(FLOAT_SUPPORT) \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
168 $(lispsource)frame.elc\
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
169 $(X_WINDOWS_SUPPORT) \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
170 $(lispsource)help.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
171 $(lispsource)indent.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
172 $(lispsource)isearch.elc \
19231
454f881f60ef (lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18509
diff changeset
173 $(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
174 $(lispsource)emacs-lisp/lisp.elc \
18509
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
175 $(lispsource)loadup.el \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
176 $(lispsource)loaddefs.el \
39009
02a61d02d766 (lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents: 36308
diff changeset
177 $(lispsource)bindings.el \
18509
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
178 $(lispsource)map-ynp.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
179 $(lispsource)menu-bar.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
180 $(lispsource)international/mule.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
181 $(lispsource)international/mule-conf.el \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
182 $(lispsource)international/mule-cmds.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
183 $(lispsource)international/characters.elc \
39009
02a61d02d766 (lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents: 36308
diff changeset
184 $(lispsource)international/ccl.elc \
02a61d02d766 (lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents: 36308
diff changeset
185 $(lispsource)international/codepage.elc \
02a61d02d766 (lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents: 36308
diff changeset
186 $(lispsource)international/utf-8.elc \
02a61d02d766 (lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents: 36308
diff changeset
187 $(lispsource)case-table.elc \
18509
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
188 $(lispsource)language/chinese.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
189 $(lispsource)language/cyrillic.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
190 $(lispsource)language/devanagari.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
191 $(lispsource)language/english.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
192 $(lispsource)language/ethiopic.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
193 $(lispsource)language/european.elc \
39009
02a61d02d766 (lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents: 36308
diff changeset
194 $(lispsource)language/czech.elc \
02a61d02d766 (lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents: 36308
diff changeset
195 $(lispsource)language/slovak.elc \
02a61d02d766 (lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents: 36308
diff changeset
196 $(lispsource)language/romanian.elc \
18509
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
197 $(lispsource)language/greek.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
198 $(lispsource)language/hebrew.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
199 $(lispsource)language/indian.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
200 $(lispsource)language/japanese.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
201 $(lispsource)language/korean.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
202 $(lispsource)language/lao.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
203 $(lispsource)language/thai.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
204 $(lispsource)language/tibetan.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
205 $(lispsource)language/vietnamese.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
206 $(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
207 $(lispsource)textmodes/page.elc \
454f881f60ef (lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18509
diff changeset
208 $(lispsource)textmodes/paragraphs.elc \
18509
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
209 $(lispsource)paths.el \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
210 $(lispsource)register.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
211 $(lispsource)replace.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
212 $(lispsource)simple.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
213 $(lispsource)startup.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
214 $(lispsource)subr.elc \
39009
02a61d02d766 (lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents: 36308
diff changeset
215 $(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
216 $(lispsource)textmodes/text-mode.elc \
18509
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
217 $(lispsource)vc-hooks.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
218 $(lispsource)ediff-hook.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
219 $(VMS_SUPPORT) \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
220 $(MSDOS_SUPPORT) \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
221 $(WINNT_SUPPORT) \
39009
02a61d02d766 (lisp): Synchronize with src/Makefile.in.
Eli Zaretskii <eliz@gnu.org>
parents: 36308
diff changeset
222 $(lispsource)widget.elc \
18509
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
223 $(lispsource)window.elc \
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
224 $(lispsource)version.el
53283f486cde (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
Geoff Voelker <voelker@cs.washington.edu>
parents: 17546
diff changeset
225
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
226
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
227 DOC = DOC
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
228 $(DOC): $(BLD)\make-docfile.exe
14899
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 13930
diff changeset
229 - $(DEL) $(DOC)
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
230 $(BLD)\make-docfile -d ..\src $(obj) > $(DOC)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
231 $(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
232 $(CP) $(DOC) ..\etc\DOC-X
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
233 - mkdir ..\src\$(OBJDIR)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
234 - mkdir ..\src\$(OBJDIR)\etc
11394
77d5d2219f05 (obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents: 9821
diff changeset
235 $(CP) $(DOC) ..\src\$(OBJDIR)\etc\DOC-X
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
236
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
237 {$(BLD)}.obj{$(BLD)}.exe:
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
238 $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
239
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
240 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
241 # Build the executables
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
242 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243 all: $(BLD) $(ALL) $(DOC)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
246 # Assuming INSTALL_DIR is defined, build and install emacs in it.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
247 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
248 INSTALL_FILES = $(ALL)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249 install: $(INSTALL_FILES)
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250 - mkdir $(INSTALL_DIR)\bin
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251 $(CP) $(BLD)\etags.exe $(INSTALL_DIR)\bin
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
252 $(CP) $(BLD)\ctags.exe $(INSTALL_DIR)\bin
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
253 $(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
254 $(CP) $(BLD)\movemail.exe $(INSTALL_DIR)\bin
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
255 - mkdir $(INSTALL_DIR)\etc
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
256 $(CP) $(DOC) $(INSTALL_DIR)\etc
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
257
39752
b58336059062 Don't install fakemail.
Jason Rumney <jasonr@gnu.org>
parents: 39009
diff changeset
258 # Don't install fakemail by default, as it sends mail into a
b58336059062 Don't install fakemail.
Jason Rumney <jasonr@gnu.org>
parents: 39009
diff changeset
259 # blackhole if /bin/mail is not installed.
b58336059062 Don't install fakemail.
Jason Rumney <jasonr@gnu.org>
parents: 39009
diff changeset
260 # $(CP) $(BLD)\fakemail.exe $(INSTALL_DIR)\bin
b58336059062 Don't install fakemail.
Jason Rumney <jasonr@gnu.org>
parents: 39009
diff changeset
261
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
262 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
263 # Maintenance
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264 #
14899
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 13930
diff changeset
265 clean:; - $(DEL) *~ *.pdb DOC*
21595
31ec89e86c0b (obj): Update with new files in src.
Geoff Voelker <voelker@cs.washington.edu>
parents: 19693
diff changeset
266 - $(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
267 - $(DEL_TREE) deleted
21595
31ec89e86c0b (obj): Update with new files in src.
Geoff Voelker <voelker@cs.washington.edu>
parents: 19693
diff changeset
268 - $(DEL_TREE) obj
31ec89e86c0b (obj): Update with new files in src.
Geoff Voelker <voelker@cs.washington.edu>
parents: 19693
diff changeset
269 - $(DEL_TREE) obj-spd
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
270
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
271 #
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
272 # Headers we would preprocess if we could.
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
273 #
11939
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
274 ..\src\config.h: ..\nt\$(CONFIG_H)
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
275 $(CP) $** $@
11394
77d5d2219f05 (obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents: 9821
diff changeset
276 ..\src\paths.h: ..\nt\paths.h
11939
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
277 $(CP) $** $@
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
278
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
279 ### DEPENDENCIES ###
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
280
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
281 EMACS_ROOT = ..
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
282 SRC = .
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
283
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
284 $(BLD)\b2m.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
285 $(SRC)\b2m.c \
17546
0128001981c3 Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16025
diff changeset
286 $(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
287 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
288 $(EMACS_ROOT)\lib-src\..\src\config.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
289
19231
454f881f60ef (lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18509
diff changeset
290 $(BLD)\ctags.obj : \
454f881f60ef (lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18509
diff changeset
291 $(SRC)\ctags.c \
454f881f60ef (lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18509
diff changeset
292 $(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
293 $(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
294 $(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
295 $(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
296 $(SRC)\ntlib.h \
454f881f60ef (lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18509
diff changeset
297 $(SRC)\getopt.h
454f881f60ef (lisp): Update paths to lisp files that have moved.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18509
diff changeset
298
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
299 $(BLD)\cvtmail.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
300 $(SRC)\cvtmail.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
301
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
302 $(BLD)\digest-doc.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
303 $(SRC)\digest-doc.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
304
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
305 $(BLD)\emacsclient.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
306 $(SRC)\emacsclient.c \
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
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
309 $(EMACS_ROOT)\lib-src\..\src\config.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
310
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
311 $(BLD)\emacsserver.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
312 $(SRC)\emacsserver.c \
17546
0128001981c3 Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16025
diff changeset
313 $(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
314 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
315 $(EMACS_ROOT)\lib-src\..\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
316 $(EMACS_ROOT)\nt\inc\sys\file.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
317
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
318 $(BLD)\emacstool.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
319 $(SRC)\emacstool.c \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
320 $(EMACS_ROOT)\nt\inc\sys\file.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
321
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
322 $(BLD)\etags.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
323 $(SRC)\etags.c \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
324 $(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
325 $(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
326 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
327 $(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
328 $(SRC)\ntlib.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
329 $(SRC)\getopt.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
330
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
331 $(BLD)\fakemail.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
332 $(SRC)\fakemail.c \
15137
74c840c2f577 (LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14981
diff changeset
333 $(SRC)\ntlib.h \
17546
0128001981c3 Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16025
diff changeset
334 $(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
335 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
336 $(EMACS_ROOT)\lib-src\..\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
337 $(EMACS_ROOT)\nt\inc\pwd.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
338
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
339 $(BLD)\getdate.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
340 $(SRC)\getdate.c \
17546
0128001981c3 Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16025
diff changeset
341 $(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
342 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
343 $(EMACS_ROOT)\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
344 $(MSTOOLS_SYS)\types.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
345
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
346 $(BLD)\getopt.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
347 $(SRC)\getopt.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
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
350 $(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
351 $(SRC)\ntlib.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
352 $(SRC)\getopt.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
353
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
354 $(BLD)\getopt1.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
355 $(SRC)\getopt1.c \
17546
0128001981c3 Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16025
diff changeset
356 $(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
357 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
358 $(EMACS_ROOT)\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
359 $(SRC)\getopt.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
360
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
361 $(BLD)\hexl.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
362 $(SRC)\hexl.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
363
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
364 $(BLD)\leditcfns.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
365 $(SRC)\leditcfns.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
366
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
367 $(BLD)\make-docfile.obj : \
11939
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
368 $(SRC)\make-docfile.c \
d6d31afbe64a Use BASE_LIBS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11741
diff changeset
369 $(EMACS_ROOT)\src\config.h
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
370
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
371 $(BLD)\make-path.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
372 $(SRC)\make-path.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
373
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
374 $(BLD)\movemail.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
375 $(SRC)\movemail.c \
17546
0128001981c3 Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16025
diff changeset
376 $(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
377 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
378 $(EMACS_ROOT)\lib-src\..\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
379 $(EMACS_ROOT)\nt\inc\sys\file.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
380 $(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
381 $(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
382 $(SRC)\ntlib.h
15137
74c840c2f577 (LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14981
diff changeset
383 $(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
384
74c840c2f577 (LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14981
diff changeset
385 $(BLD)\ntlib.obj : \
74c840c2f577 (LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14981
diff changeset
386 $(SRC)\ntlib.c \
74c840c2f577 (LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14981
diff changeset
387 $(SRC)\ntlib.h \
74c840c2f577 (LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14981
diff changeset
388 $(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
389
74c840c2f577 (LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14981
diff changeset
390 $(BLD)\pop.obj : \
74c840c2f577 (LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14981
diff changeset
391 $(SRC)\pop.c \
74c840c2f577 (LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14981
diff changeset
392 $(SRC)\pop.h \
74c840c2f577 (LOCAL_FLAGS): Include path to NT shadow includes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14981
diff changeset
393 $(SRC)\ntlib.h
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
394
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
395 $(BLD)\profile.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
396 $(SRC)\profile.c \
17546
0128001981c3 Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16025
diff changeset
397 $(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
398 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
399 $(EMACS_ROOT)\lib-src\..\src\config.h \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
400 $(EMACS_ROOT)\lib-src\..\src\systime.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
401
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
402 $(BLD)\qsort.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
403 $(SRC)\qsort.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
404
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
405 $(BLD)\sorted-doc.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
406 $(SRC)\sorted-doc.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
407
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
408 $(BLD)\tcp.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
409 $(SRC)\tcp.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
410
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
411 $(BLD)\test-distrib.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
412 $(SRC)\test-distrib.c
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
413
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
414 $(BLD)\timer.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
415 $(SRC)\timer.c \
17546
0128001981c3 Change references of windowsnt.h to ms-w32.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16025
diff changeset
416 $(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
417 $(EMACS_ROOT)\src\m\intel386.h \
9803
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
418 $(EMACS_ROOT)\lib-src\..\src\config.h
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
419
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
420 $(BLD)\yow.obj : \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
421 $(SRC)\yow.c \
fa698fd10c05 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
422 $(EMACS_ROOT)\lib-src\..\src\paths.h