aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/makefile.nt
diff options
context:
space:
mode:
authorGeoff Voelker1997-07-01 05:08:34 +0000
committerGeoff Voelker1997-07-01 05:08:34 +0000
commit896d5821b835fe968ec72d31b0a549d63e37ef0f (patch)
tree147bd7b0d5bf15eb7f5e7d8fc9e1daca2e9c4ca4 /lib-src/makefile.nt
parent938ef1fd093c0f8ae074a9a266ee615650a71bda (diff)
downloademacs-896d5821b835fe968ec72d31b0a549d63e37ef0f.tar.gz
emacs-896d5821b835fe968ec72d31b0a549d63e37ef0f.zip
(GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
(movemail.exe): Depend upon and link with getopt files. (obj): Include new source files. (FACE_SUPPORT, MOUSE_SUPPORT, FLOAT_SUPPORT, WINNT_SUPPORT): Define. (lisp): Include new and reorganized elisp files.
Diffstat (limited to 'lib-src/makefile.nt')
-rw-r--r--lib-src/makefile.nt118
1 files changed, 78 insertions, 40 deletions
diff --git a/lib-src/makefile.nt b/lib-src/makefile.nt
index cf8b222bb4b..3cb64ef3ba4 100644
--- a/lib-src/makefile.nt
+++ b/lib-src/makefile.nt
@@ -55,8 +55,6 @@ LIBS = $(BASE_LIBS)
55$(BLD)\make-docfile.exe: $(BLD)\make-docfile.obj $(BLD)\ntlib.obj 55$(BLD)\make-docfile.exe: $(BLD)\make-docfile.obj $(BLD)\ntlib.obj
56 $(LINK) -out:$@ $(LINK_FLAGS) $(BLD)\make-docfile.obj $(BLD)\ntlib.obj $(LIBS) 56 $(LINK) -out:$@ $(LINK_FLAGS) $(BLD)\make-docfile.obj $(BLD)\ntlib.obj $(LIBS)
57$(BLD)\hexl.exe: $(BLD)\hexl.obj 57$(BLD)\hexl.exe: $(BLD)\hexl.obj
58$(BLD)\movemail.exe: $(BLD)\movemail.obj $(BLD)\pop.obj $(BLD)\ntlib.obj
59 $(LINK) -out:$@ $(LINK_FLAGS) -debug:FULL $(BLD)\movemail.obj $(BLD)\pop.obj $(BLD)\ntlib.obj $(LIBS) wsock32.lib
60$(BLD)\fakemail.exe: $(BLD)\fakemail.obj $(BLD)\ntlib.obj 58$(BLD)\fakemail.exe: $(BLD)\fakemail.obj $(BLD)\ntlib.obj
61 $(LINK) -out:$@ $(LINK_FLAGS) -debug:full $(BLD)\fakemail.obj $(BLD)\ntlib.obj $(LIBS) 59 $(LINK) -out:$@ $(LINK_FLAGS) -debug:full $(BLD)\fakemail.obj $(BLD)\ntlib.obj $(LIBS)
62 60
@@ -66,6 +64,16 @@ hexl: $(BLD) $(BLD)\hexl.exe
66movemail: $(BLD) $(BLD)\movemail.exe 64movemail: $(BLD) $(BLD)\movemail.exe
67fakemail: $(BLD) $(BLD)\fakemail.exe 65fakemail: $(BLD) $(BLD)\fakemail.exe
68 66
67GETOPTOBJS = $(BLD)\getopt.obj $(BLD)\getopt1.obj
68GETOPTDEPS = $(GETOPTOBJS) getopt.h
69MOVEMAILOBJS = $(BLD)\movemail.obj \
70 $(BLD)\pop.obj \
71 $(BLD)\ntlib.obj \
72 $(GETOPTOBJS)
73
74$(BLD)\movemail.exe: $(MOVEMAILOBJS) getopt.h
75 $(LINK) -out:$@ $(LINK_FLAGS) -debug:FULL $(MOVEMAILOBJS) $(LIBS) wsock32.lib
76
69ETAGSOBJ = $(BLD)\etags.obj \ 77ETAGSOBJ = $(BLD)\etags.obj \
70 $(BLD)\getopt.obj \ 78 $(BLD)\getopt.obj \
71 $(BLD)\getopt1.obj \ 79 $(BLD)\getopt1.obj \
@@ -120,49 +128,79 @@ $(BLD)\ctags.obj: ctags.c
120# 128#
121# From ..\src\makefile.nt. 129# From ..\src\makefile.nt.
122# 130#
123obj = abbrev.c alloc.c alloca.c buffer.c bytecode.c callint.c callproc.c casefiddle.c cm.c cmds.c data.c dired.c dispnew.c doc.c doprnt.c editfns.c eval.c fileio.c filelock.c filemode.c fns.c indent.c insdel.c keyboard.c keymap.c lastfile.c lread.c macros.c marker.c minibuf.c xfaces.c mocklisp.c 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 131obj = abbrev.c alloc.c alloca.c buffer.c bytecode.c callint.c callproc.c casefiddle.c cm.c cmds.c charset.c coding.c category.c ccl.c data.c dired.c dispnew.c doc.c doprnt.c editfns.c eval.c fileio.c filelock.c filemode.c fns.c fontset.c indent.c insdel.c keyboard.c keymap.c lastfile.c lread.c macros.c marker.c minibuf.c xfaces.c mocklisp.c print.c process.c regex.c scroll.c search.c syntax.c sysdep.c term.c termcap.c tparam.c undo.c unexw32.c window.c xdisp.c casetab.c floatfns.c frame.c gmalloc.c intervals.c ralloc.c textprop.c vm-limit.c region-cache.c strftime.c w32.c w32console.c w32faces.c w32fns.c w32heap.c w32inevt.c w32proc.c w32reg.c w32menu.c w32select.c w32term.c w32xfns.c
124
125lispdir = ..\lisp
126 132
127# 133#
128# These are the lisp files that are loaded up in loadup.el 134# These are the lisp files that are loaded up in loadup.el
129# 135#
136lispsource = ../lisp/
137
138FACE_SUPPORT = $(lispsource)facemenu.elc
139MOUSE_SUPPORT = $(lispsource)select.elc $(lispsource)scroll-bar.elc
140FLOAT_SUPPORT = $(lispsource)float-sup.elc
141WINNT_SUPPORT = $(lispsource)ls-lisp.elc $(lispsource)w32-fns.elc $(lispsource)dos-w32.elc
142
130lisp= \ 143lisp= \
131 $(lispdir)\subr.elc \ 144 $(lispsource)abbrev.elc \
132 $(lispdir)\byte-run.elc \ 145 $(lispsource)buff-menu.elc \
133 $(lispdir)\map-ynp.elc \ 146 $(lispsource)byte-run.elc \
134 $(lispdir)\loaddefs.el \ 147 $(lispsource)cus-start.el \
135 $(lispdir)\simple.elc \ 148 $(lispsource)custom.elc \
136 $(lispdir)\help.elc \ 149 $(lispsource)faces.elc \
137 $(lispdir)\files.elc \ 150 $(lispsource)files.elc \
138 $(lispdir)\format.elc \ 151 $(lispsource)fill.elc \
139 $(lispdir)\indent.elc \ 152 $(lispsource)format.elc \
140 $(lispdir)\window.elc \ 153 $(FACE_SUPPORT) \
141 $(lispdir)\frame.elc \ 154 $(MOUSE_SUPPORT) \
142 $(lispdir)\mouse.elc \ 155 $(FLOAT_SUPPORT) \
143 $(lispdir)\menu-bar.elc \ 156 $(lispsource)frame.elc\
144 $(lispdir)\scroll-bar.elc \ 157 $(X_WINDOWS_SUPPORT) \
145 $(lispdir)\select.elc \ 158 $(lispsource)help.elc \
146 $(lispdir)\paths.el \ 159 $(lispsource)indent.elc \
147 $(lispdir)\startup.elc \ 160 $(lispsource)isearch.elc \
148 $(lispdir)\lisp.elc \ 161 $(lispsource)lisp-mode.elc \
149 $(lispdir)\page.elc \ 162 $(lispsource)lisp.elc \
150 $(lispdir)\register.elc \ 163 $(lispsource)loadup.el \
151 $(lispdir)\paragraphs.elc \ 164 $(lispsource)loaddefs.el \
152 $(lispdir)\lisp-mode.elc \ 165 $(lispsource)map-ynp.elc \
153 $(lispdir)\text-mode.elc \ 166 $(lispsource)menu-bar.elc \
154 $(lispdir)\fill.elc \ 167 $(lispsource)international/mule.elc \
155 $(lispdir)\c-mode.elc \ 168 $(lispsource)international/mule-conf.el \
156 $(lispdir)\isearch.elc \ 169 $(lispsource)international/mule-cmds.elc \
157 $(lispdir)\replace.elc \ 170 $(lispsource)international/characters.elc \
158 $(lispdir)\abbrev.elc \ 171 $(lispsource)language/chinese.elc \
159 $(lispdir)\buff-menu.elc \ 172 $(lispsource)language/cyrillic.elc \
160 $(lispdir)\ls-lisp.elc \ 173 $(lispsource)language/devanagari.elc \
161 $(lispdir)\winnt.elc \ 174 $(lispsource)language/english.elc \
162 $(lispdir)\float-sup.elc \ 175 $(lispsource)language/ethiopic.elc \
163 $(lispdir)\vc-hooks.elc \ 176 $(lispsource)language/european.elc \
164 $(lispdir)\version.el \ 177 $(lispsource)language/greek.elc \
165 $(lispdir)\dos-nt.elc 178 $(lispsource)language/hebrew.elc \
179 $(lispsource)language/indian.elc \
180 $(lispsource)language/japanese.elc \
181 $(lispsource)language/korean.elc \
182 $(lispsource)language/lao.elc \
183 $(lispsource)language/thai.elc \
184 $(lispsource)language/tibetan.elc \
185 $(lispsource)language/vietnamese.elc \
186 $(lispsource)language/misc-lang.elc \
187 $(lispsource)page.elc \
188 $(lispsource)paragraphs.elc \
189 $(lispsource)paths.el \
190 $(lispsource)register.elc \
191 $(lispsource)replace.elc \
192 $(lispsource)simple.elc \
193 $(lispsource)startup.elc \
194 $(lispsource)subr.elc \
195 $(lispsource)text-mode.elc \
196 $(lispsource)vc-hooks.elc \
197 $(lispsource)ediff-hook.elc \
198 $(VMS_SUPPORT) \
199 $(MSDOS_SUPPORT) \
200 $(WINNT_SUPPORT) \
201 $(lispsource)window.elc \
202 $(lispsource)version.el
203
166 204
167DOC = DOC 205DOC = DOC
168$(DOC): $(BLD)\make-docfile.exe 206$(DOC): $(BLD)\make-docfile.exe