*** empty log message ***
[emacs.git] / lib-src / makefile.w32-in
blobfaab36e087bf1f5ab60b16417130bb5937be750f
1 #  Makefile for GNU Emacs on the Microsoft W32 API.
2 #  Copyright (c) 2000-2001 Free Software Foundation, Inc.
4 #  This file is part of GNU Emacs.
6 #  GNU Emacs is free software; you can redistribute it and/or modify
7 #  it under the terms of the GNU General Public License as published by
8 #  the Free Software Foundation; either version 2, or (at your option)
9 #  any later version.
11 #  GNU Emacs is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #  GNU General Public License for more details.
16 #  You should have received a copy of the GNU General Public License
17 #  along with GNU Emacs; see the file COPYING.  If not, write to the
18 #  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 #  Boston, MA 02111-1307, USA.
22 ALL           = make-docfile hexl ctags etags movemail ebrowse
24 .PHONY: $(ALL)
26 LOCAL_FLAGS     = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \
27                   -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \
28                   -I../src
30 # don't know what (if) to do with these yet...
32 #               $(BLD)/sorted-doc.exe   \
33 #               $(BLD)/env.exe          \
34 #               $(BLD)/server.exe       \
35 #               $(BLD)/emacstool.exe    \
36 #               $(BLD)/leditcfns.exe    \
37 #               $(BLD)/emacsclient.exe  \
38 #               $(BLD)/cvtmail.exe      \
39 #               $(BLD)/digest-doc.exe   \
40 #               $(BLD)/test-distrib.exe \
42 LIBS          = $(BASE_LIBS) $(ADVAPI32)
44 $(BLD)/make-docfile.exe:        $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O)
45                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O) $(LIBS)
46 $(BLD)/hexl.exe:                $(BLD)/hexl.$(O)
47                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/hexl.$(O) $(LIBS)
48 $(BLD)/fakemail.exe:            $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O)
49                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) $(LIBS)
51 make-docfile:   $(BLD) $(BLD)/make-docfile.exe
52 ctags:          $(BLD) $(BLD)/ctags.exe
53 etags:          $(BLD) $(BLD)/etags.exe
54 ebrowse:        $(BLD) $(BLD)/ebrowse.exe
55 hexl:           $(BLD) $(BLD)/hexl.exe
56 movemail:       $(BLD) $(BLD)/movemail.exe
57 fakemail:       $(BLD) $(BLD)/fakemail.exe
59 GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O)
60 GETOPTDEPS = $(GETOPTOBJS) getopt.h
61 MOVEMAILOBJS =  $(BLD)/movemail.$(O) \
62                 $(BLD)/pop.$(O) \
63                 $(BLD)/ntlib.$(O) \
64                 $(GETOPTOBJS)
66 $(BLD)/movemail.exe:    $(MOVEMAILOBJS) getopt.h
67 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
68                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(MOVEMAILOBJS) $(WSOCK32) $(LIBS)
70 ETAGSOBJ      = $(BLD)/etags.$(O) \
71                 $(BLD)/getopt.$(O) \
72                 $(BLD)/getopt1.$(O) \
73                 $(BLD)/ntlib.$(O) \
74                 $(BLD)/regex.$(O)
76 $(BLD)/etags.exe:       $(ETAGSOBJ)
77                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS)
80 EBROWSEOBJ    = $(BLD)/ebrowse.$(O) \
81                 $(BLD)/getopt.$(O) \
82                 $(BLD)/getopt1.$(O) \
83                 $(BLD)/ntlib.$(O)
85 $(BLD)/ebrowse.exe:     $(EBROWSEOBJ)
86                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(EBROWSEOBJ) $(LIBS)
88 $(BLD)/regex.$(O): ../src/regex.c ../src/regex.h ../src/config.h
89                 $(CC)  $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \
90                 ../src/regex.c $(CC_OUT)$@
92 ETAGS_CFLAGS  = -DHAVE_GETCWD
93 $(BLD)/etags.$(O): etags.c
94                 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c
96 CTAGSOBJ      = $(BLD)/ctags.$(O) \
97                 $(BLD)/getopt.$(O) \
98                 $(BLD)/getopt1.$(O) \
99                 $(BLD)/ntlib.$(O) \
100                 $(BLD)/regex.$(O)
102 $(BLD)/ctags.exe:  $(CTAGSOBJ)
103                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS)
105 ctags.c:        etags.c
106                 - $(DEL) ctags.c
107                 $(CP) etags.c ctags.c
109 CTAGS_CFLAGS  = -DCTAGS $(ETAGS_CFLAGS)
110 $(BLD)/ctags.$(O): ctags.c
111                 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c
114 # don't know what to do with these yet...
116 # $(BLD)/sorted-doc.exe:        $(BLD)/sorted-doc.$(O)
117 # $(BLD)/yow.exe:               $(BLD)/yow.$(O)
118 # $(BLD)/emacstool.exe:         $(BLD)/emacstool.$(O)
119 # $(BLD)/leditcfns.exe:         $(BLD)/leditcfns.$(O)
120 # $(BLD)/server.exe:            $(BLD)/server.$(O)
121 # $(BLD)/cvtmail.exe:           $(BLD)/cvtmail.$(O)
122 # $(BLD)/digest-doc.exe:        $(BLD)/digest-doc.$(O)
123 # $(BLD)/emacsclient.exe:       $(BLD)/emacsclient.$(O)
124 # $(BLD)/test-distrib.exe:      $(BLD)/test-distrib.$(O)
127 # From ..\src\makefile.nt.
129 obj = abbrev.c alloc.c alloca.c buffer.c bytecode.c callint.c callproc.c casefiddle.c casetab.c category.c ccl.c charset.c cm.c cmds.c coding.c data.c dired.c dispnew.c doc.c doprnt.c editfns.c emacs.c eval.c fileio.c filelock.c filemode.c floatfns.c fns.c fontset.c frame.c gmalloc.c indent.c insdel.c intervals.c keyboard.c keymap.c lastfile.c lread.c macros.c marker.c minibuf.c print.c process.c ralloc.c regex.c region-cache.c scroll.c search.c sound.c strftime.c syntax.c sysdep.c term.c termcap.c textprop.c tparam.c undo.c unexw32.c vm-limit.c w32.c w32console.c w32fns.c w32heap.c w32inevt.c w32menu.c w32proc.c w32reg.c w32select.c w32term.c w32xfns.c window.c xdisp.c xfaces.c xfaces.c
131 # These are the lisp files that are loaded up in loadup.el
133 lispsource = ../lisp/
135 MOUSE_SUPPORT = $(lispsource)select.elc $(lispsource)scroll-bar.elc $(lispsource)mouse.elc
136 WINNT_SUPPORT = $(lispsource)ls-lisp.elc $(lispsource)disp-table.elc $(lispsource)w32-fns.elc $(lispsource)dos-w32.elc $(lispsource)w32-vars.elc
138 # lisp files that are loaded up on other platforms
139 MSDOS_SUPPORT = $(lispsource)dos-fns.elc $(lispsource)dos-vars.elc $(lispsource)international/ccl.elc $(lispsource)international/codepage.elc
140 VMS_SUPPORT = $(lispsource)vmsproc.elc $(lispsource)vms-patch.elc
142 lisp= \
143         $(lispsource)abbrev.elc \
144         $(lispsource)buff-menu.elc \
145         $(lispsource)button.elc \
146         $(lispsource)emacs-lisp/byte-run.elc \
147         $(lispsource)cus-start.elc \
148         $(lispsource)custom.elc \
149         $(lispsource)emacs-lisp/backquote.elc \
150         $(lispsource)emacs-lisp/lisp-mode.elc \
151         $(lispsource)emacs-lisp/lisp.elc \
152         $(lispsource)env.elc \
153         $(lispsource)faces.elc \
154         $(lispsource)files.elc \
155         $(lispsource)format.elc \
156         $(lispsource)facemenu.elc \
157         $(MOUSE_SUPPORT) \
158         $(lispsource)emacs-lisp/float-sup.elc \
159         $(lispsource)frame.elc \
160         $(lispsource)help.elc \
161         $(lispsource)indent.elc \
162         $(lispsource)isearch.elc \
163         $(lispsource)loadup.el \
164         $(lispsource)loaddefs.el \
165         $(lispsource)bindings.elc \
166         $(lispsource)emacs-lisp/map-ynp.elc \
167         $(lispsource)menu-bar.elc \
168         $(lispsource)international/mule.elc \
169         $(lispsource)international/mule-conf.el \
170         $(lispsource)international/mule-cmds.elc \
171         $(lispsource)international/characters.elc \
172         $(lispsource)international/ucs-tables.elc \
173         $(lispsource)international/utf-8.elc \
174         $(lispsource)international/latin-1.el \
175         $(lispsource)international/latin-2.el \
176         $(lispsource)international/latin-3.el \
177         $(lispsource)international/latin-4.el \
178         $(lispsource)international/latin-5.el \
179         $(lispsource)international/latin-8.el \
180         $(lispsource)international/latin-9.el \
181         $(lispsource)case-table.elc \
182         $(lispsource)language/chinese.elc \
183         $(lispsource)language/cyrillic.elc \
184         $(lispsource)language/indian.elc \
185         $(lispsource)language/devanagari.el \
186         $(lispsource)language/malayalam.el \
187         $(lispsource)language/tamil.el \
188         $(lispsource)language/english.el \
189         $(lispsource)language/ethiopic.elc \
190         $(lispsource)language/european.elc \
191         $(lispsource)language/czech.el \
192         $(lispsource)language/slovak.el \
193         $(lispsource)language/romanian.el \
194         $(lispsource)language/greek.el \
195         $(lispsource)language/hebrew.el \
196         $(lispsource)language/japanese.el \
197         $(lispsource)language/korean.el \
198         $(lispsource)language/lao.el \
199         $(lispsource)language/thai.el \
200         $(lispsource)language/tibetan.elc \
201         $(lispsource)language/vietnamese.elc \
202         $(lispsource)language/misc-lang.el \
203         $(lispsource)language/utf-8-lang.el \
204         $(lispsource)language/georgian.el \
205         $(lispsource)paths.el \
206         $(lispsource)register.elc \
207         $(lispsource)replace.elc \
208         $(lispsource)simple.elc \
209         $(lispsource)startup.elc \
210         $(lispsource)subr.elc \
211         $(lispsource)term/tty-colors.elc \
212         $(lispsource)font-core.elc \
213         $(lispsource)textmodes/fill.elc \
214         $(lispsource)textmodes/page.elc \
215         $(lispsource)textmodes/paragraphs.elc \
216         $(lispsource)textmodes/text-mode.elc \
217         $(lispsource)vc-hooks.elc \
218         $(lispsource)ediff-hook.elc \
219         $(VMS_SUPPORT) \
220         $(MSDOS_SUPPORT) \
221         $(WINNT_SUPPORT) \
222         $(lispsource)widget.elc \
223         $(lispsource)window.elc \
224         $(lispsource)version.el
227 DOC           = DOC
228 $(DOC):         make-docfile
229                 - $(DEL) $(DOC)
230                 "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj)
231                 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp)
232                 $(CP) $(DOC) ../etc/DOC-X
233                 - mkdir "../src/$(OBJDIR)"
234                 - mkdir "../src/$(OBJDIR)/etc"
235                 $(CP) $(DOC) ../src/$(OBJDIR)/etc/DOC-X
237 {$(BLD)}.$(O){$(BLD)}.exe:
238                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $*.$(O) $(LIBS)
241 # Build the executables
243 all:            $(BLD) $(ALL) $(DOC)
246 # Assuming INSTALL_DIR is defined, build and install emacs in it.
248 INSTALL_FILES = $(ALL)
249 install:        $(INSTALL_FILES)
250                 - mkdir "$(INSTALL_DIR)/bin"
251                 $(CP) $(BLD)/etags.exe $(INSTALL_DIR)/bin
252                 $(CP) $(BLD)/ebrowse.exe $(INSTALL_DIR)/bin
253                 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin
254                 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin
255                 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin
256                 - mkdir "$(INSTALL_DIR)/etc"
257                 $(CP) $(DOC) $(INSTALL_DIR)/etc
260 # Maintenance
262 clean:
263                 - $(DEL) *~ DOC* $(COMPILER_TEMP_FILES)
264                 - $(DEL) ctags.c
265                 - $(DEL_TREE) $(OBJDIR)
267 cleanall:       clean
268                 - $(DEL_TREE) obj
269                 - $(DEL_TREE) obj-spd
270                 - $(DEL_TREE) oo
271                 - $(DEL_TREE) oo-spd
274 # Headers we would preprocess if we could.
276 ../src/config.h:        ../nt/$(CONFIG_H)
277                         $(CP) $(ALL_DEPS) $@
278 ../src/paths.h:         ../nt/paths.h
279                         $(CP) $(ALL_DEPS) $@
281 ### DEPENDENCIES ###
283 EMACS_ROOT      = ..
284 SRC             = .
286 $(BLD)/alloca.$(O) : \
287         $(SRC)/alloca.c \
288         $(EMACS_ROOT)/src/s/ms-w32.h \
289         $(EMACS_ROOT)/src/m/intel386.h \
290         $(EMACS_ROOT)/src/config.h \
291         $(EMACS_ROOT)/src/blockinput.h
293 $(BLD)/b2m.$(O) : \
294         $(SRC)/b2m.c \
295         $(EMACS_ROOT)/src/s/ms-w32.h \
296         $(EMACS_ROOT)/src/m/intel386.h \
297         $(EMACS_ROOT)/lib-src/../src/config.h
299 $(BLD)/ctags.$(O) : \
300         $(SRC)/ctags.c \
301         $(EMACS_ROOT)/nt/inc/sys/param.h \
302         $(EMACS_ROOT)/src/s/ms-w32.h \
303         $(EMACS_ROOT)/src/m/intel386.h \
304         $(EMACS_ROOT)/lib-src/../src/config.h \
305         $(SRC)/ntlib.h \
306         $(SRC)/getopt.h
308 $(BLD)/cvtmail.$(O) : \
309         $(SRC)/cvtmail.c
311 $(BLD)/digest-doc.$(O) : \
312         $(SRC)/digest-doc.c
314 $(BLD)/emacsclient.$(O) : \
315         $(SRC)/emacsclient.c \
316         $(EMACS_ROOT)/src/s/ms-w32.h \
317         $(EMACS_ROOT)/src/m/intel386.h \
318         $(EMACS_ROOT)/lib-src/../src/config.h
320 $(BLD)/emacstool.$(O) : \
321         $(SRC)/emacstool.c \
322         $(EMACS_ROOT)/nt/inc/sys/file.h
324 $(BLD)/etags.$(O) : \
325         $(SRC)/etags.c \
326         $(EMACS_ROOT)/nt/inc/sys/param.h \
327         $(EMACS_ROOT)/src/s/ms-w32.h \
328         $(EMACS_ROOT)/src/m/intel386.h \
329         $(EMACS_ROOT)/lib-src/../src/config.h \
330         $(SRC)/ntlib.h \
331         $(SRC)/getopt.h
333 $(BLD)/fakemail.$(O) : \
334         $(SRC)/fakemail.c \
335         $(SRC)/ntlib.h \
336         $(EMACS_ROOT)/src/s/ms-w32.h \
337         $(EMACS_ROOT)/src/m/intel386.h \
338         $(EMACS_ROOT)/lib-src/../src/config.h \
339         $(EMACS_ROOT)/nt/inc/pwd.h
341 $(BLD)/getdate.$(O) : \
342         $(SRC)/getdate.c \
343         $(EMACS_ROOT)/src/s/ms-w32.h \
344         $(EMACS_ROOT)/src/m/intel386.h \
345         $(EMACS_ROOT)/src/config.h \
346         $(MSTOOLS_SYS)/types.h
348 $(BLD)/getopt.$(O) : \
349         $(SRC)/getopt.c \
350         $(EMACS_ROOT)/src/s/ms-w32.h \
351         $(EMACS_ROOT)/src/m/intel386.h \
352         $(EMACS_ROOT)/src/config.h \
353         $(SRC)/ntlib.h \
354         $(SRC)/getopt.h
356 $(BLD)/getopt1.$(O) : \
357         $(SRC)/getopt1.c \
358         $(EMACS_ROOT)/src/s/ms-w32.h \
359         $(EMACS_ROOT)/src/m/intel386.h \
360         $(EMACS_ROOT)/src/config.h \
361         $(SRC)/getopt.h
363 $(BLD)/hexl.$(O) : \
364         $(SRC)/hexl.c
366 $(BLD)/leditcfns.$(O) : \
367         $(SRC)/leditcfns.c
369 $(BLD)/make-docfile.$(O) : \
370         $(SRC)/make-docfile.c \
371         $(EMACS_ROOT)/src/config.h
373 $(BLD)/make-path.$(O) : \
374         $(SRC)/make-path.c
376 $(BLD)/movemail.$(O) : \
377         $(SRC)/movemail.c \
378         $(EMACS_ROOT)/src/s/ms-w32.h \
379         $(EMACS_ROOT)/src/m/intel386.h \
380         $(EMACS_ROOT)/lib-src/../src/config.h \
381         $(EMACS_ROOT)/nt/inc/sys/file.h \
382         $(EMACS_ROOT)/lib-src/../src/syswait.h \
383         $(EMACS_ROOT)/nt/inc/pwd.h \
384         $(SRC)/ntlib.h
385                 $(CC) $(CFLAGS) -DUSG $(CC_OUT)$@ movemail.c
387 $(BLD)/ntlib.$(O) : \
388         $(SRC)/ntlib.c \
389         $(SRC)/ntlib.h \
390         $(EMACS_ROOT)/nt/inc/pwd.h
392 $(BLD)/pop.$(O) : \
393         $(SRC)/pop.c \
394         $(SRC)/pop.h \
395         $(SRC)/ntlib.h
397 $(BLD)/profile.$(O) : \
398         $(SRC)/profile.c \
399         $(EMACS_ROOT)/src/s/ms-w32.h \
400         $(EMACS_ROOT)/src/m/intel386.h \
401         $(EMACS_ROOT)/lib-src/../src/config.h \
402         $(EMACS_ROOT)/lib-src/../src/systime.h
404 $(BLD)/qsort.$(O) : \
405         $(SRC)/qsort.c
407 $(BLD)/sorted-doc.$(O) : \
408         $(SRC)/sorted-doc.c
410 $(BLD)/tcp.$(O) : \
411         $(SRC)/tcp.c
413 $(BLD)/test-distrib.$(O) : \
414         $(SRC)/test-distrib.c
416 $(BLD)/timer.$(O) : \
417         $(SRC)/timer.c \
418         $(EMACS_ROOT)/src/s/ms-w32.h \
419         $(EMACS_ROOT)/src/m/intel386.h \
420         $(EMACS_ROOT)/lib-src/../src/config.h
422 $(BLD)/yow.$(O) : \
423         $(SRC)/yow.c \
424         $(EMACS_ROOT)/lib-src/../src/paths.h