comparison lib-src/makefile.nt @ 18509:53283f486cde

(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.
author Geoff Voelker <voelker@cs.washington.edu>
date Tue, 01 Jul 1997 05:08:34 +0000
parents 0128001981c3
children 454f881f60ef
comparison
equal deleted inserted replaced
18508:eaa60432140c 18509:53283f486cde
53 LIBS = $(BASE_LIBS) 53 LIBS = $(BASE_LIBS)
54 54
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
63 make-docfile: $(BLD) $(BLD)\make-docfile.exe 61 make-docfile: $(BLD) $(BLD)\make-docfile.exe
64 etags: $(BLD) $(BLD)\etags.exe 62 etags: $(BLD) $(BLD)\etags.exe
65 hexl: $(BLD) $(BLD)\hexl.exe 63 hexl: $(BLD) $(BLD)\hexl.exe
66 movemail: $(BLD) $(BLD)\movemail.exe 64 movemail: $(BLD) $(BLD)\movemail.exe
67 fakemail: $(BLD) $(BLD)\fakemail.exe 65 fakemail: $(BLD) $(BLD)\fakemail.exe
66
67 GETOPTOBJS = $(BLD)\getopt.obj $(BLD)\getopt1.obj
68 GETOPTDEPS = $(GETOPTOBJS) getopt.h
69 MOVEMAILOBJS = $(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
68 76
69 ETAGSOBJ = $(BLD)\etags.obj \ 77 ETAGSOBJ = $(BLD)\etags.obj \
70 $(BLD)\getopt.obj \ 78 $(BLD)\getopt.obj \
71 $(BLD)\getopt1.obj \ 79 $(BLD)\getopt1.obj \
72 $(BLD)\ntlib.obj \ 80 $(BLD)\ntlib.obj \
118 # $(BLD)\test-distrib.exe: $(BLD)\test-distrib.obj 126 # $(BLD)\test-distrib.exe: $(BLD)\test-distrib.obj
119 127
120 # 128 #
121 # From ..\src\makefile.nt. 129 # From ..\src\makefile.nt.
122 # 130 #
123 obj = 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 131 obj = abbrev.c alloc.c alloca.c buffer.c bytecode.c callint.c callproc.c casefiddle.c cm.c cmds.c charset.c coding.c category.c ccl.c data.c dired.c dispnew.c doc.c doprnt.c editfns.c eval.c fileio.c filelock.c filemode.c fns.c fontset.c indent.c insdel.c keyboard.c keymap.c lastfile.c lread.c macros.c marker.c minibuf.c xfaces.c mocklisp.c print.c process.c regex.c scroll.c search.c syntax.c sysdep.c term.c termcap.c tparam.c undo.c unexw32.c window.c xdisp.c casetab.c floatfns.c frame.c gmalloc.c intervals.c ralloc.c textprop.c vm-limit.c region-cache.c strftime.c w32.c w32console.c w32faces.c w32fns.c w32heap.c w32inevt.c w32proc.c w32reg.c w32menu.c w32select.c w32term.c w32xfns.c
124
125 lispdir = ..\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 #
136 lispsource = ../lisp/
137
138 FACE_SUPPORT = $(lispsource)facemenu.elc
139 MOUSE_SUPPORT = $(lispsource)select.elc $(lispsource)scroll-bar.elc
140 FLOAT_SUPPORT = $(lispsource)float-sup.elc
141 WINNT_SUPPORT = $(lispsource)ls-lisp.elc $(lispsource)w32-fns.elc $(lispsource)dos-w32.elc
142
130 lisp= \ 143 lisp= \
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
167 DOC = DOC 205 DOC = DOC
168 $(DOC): $(BLD)\make-docfile.exe 206 $(DOC): $(BLD)\make-docfile.exe
169 - $(DEL) $(DOC) 207 - $(DEL) $(DOC)
170 $(BLD)\make-docfile -d ..\src $(obj) > $(DOC) 208 $(BLD)\make-docfile -d ..\src $(obj) > $(DOC)