(Keymap Basics): New node, split out of Key Sequences.
[emacs.git] / lib-src / makefile.w32-in
blob6aa15964f45cbe1964cbf20d116e6228c5310c74
1 #  -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 #  Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 #                2005, 2006 Free Software Foundation, Inc.
5 #  This file is part of GNU Emacs.
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.
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.
17 #  You should have received a copy of the GNU General Public License
18 #  along with GNU Emacs; see the file COPYING.  If not, write to the
19 #  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 #  Boston, MA 02110-1301, USA.
23 ALL           = make-docfile hexl ctags etags movemail ebrowse
25 .PHONY: $(ALL)
27 LOCAL_FLAGS     = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \
28                   -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \
29                   -I../src
31 # don't know what (if) to do with these yet...
33 #               $(BLD)/sorted-doc.exe   \
34 #               $(BLD)/env.exe          \
35 #               $(BLD)/server.exe       \
36 #               $(BLD)/emacstool.exe    \
37 #               $(BLD)/leditcfns.exe    \
38 #               $(BLD)/emacsclient.exe  \
39 #               $(BLD)/cvtmail.exe      \
40 #               $(BLD)/digest-doc.exe   \
41 #               $(BLD)/test-distrib.exe \
43 LIBS          = $(BASE_LIBS) $(ADVAPI32)
45 $(BLD)/make-docfile.exe:        $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O)
46                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O) $(LIBS)
47 $(BLD)/hexl.exe:                $(BLD)/hexl.$(O)
48                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/hexl.$(O) $(LIBS)
49 $(BLD)/fakemail.exe:            $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O)
50                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) $(LIBS)
52 make-docfile:   $(BLD) $(BLD)/make-docfile.exe
53 ctags:          $(BLD) $(BLD)/ctags.exe
54 etags:          $(BLD) $(BLD)/etags.exe
55 ebrowse:        $(BLD) $(BLD)/ebrowse.exe
56 hexl:           $(BLD) $(BLD)/hexl.exe
57 movemail:       $(BLD) $(BLD)/movemail.exe
58 fakemail:       $(BLD) $(BLD)/fakemail.exe
60 GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O)
61 GETOPTDEPS = $(GETOPTOBJS) getopt.h
62 MOVEMAILOBJS =  $(BLD)/movemail.$(O) \
63                 $(BLD)/pop.$(O) \
64                 $(BLD)/ntlib.$(O) \
65                 $(GETOPTOBJS)
67 $(BLD)/movemail.exe:    $(MOVEMAILOBJS) getopt.h
68 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
69                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(MOVEMAILOBJS) $(WSOCK32) $(LIBS)
71 ETAGSOBJ      = $(BLD)/etags.$(O) \
72                 $(BLD)/getopt.$(O) \
73                 $(BLD)/getopt1.$(O) \
74                 $(BLD)/ntlib.$(O) \
75                 $(BLD)/regex.$(O)
77 $(BLD)/etags.exe:       $(ETAGSOBJ)
78                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS)
81 EBROWSEOBJ    = $(BLD)/ebrowse.$(O) \
82                 $(BLD)/getopt.$(O) \
83                 $(BLD)/getopt1.$(O) \
84                 $(BLD)/ntlib.$(O)
86 $(BLD)/ebrowse.exe:     $(EBROWSEOBJ)
87                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(EBROWSEOBJ) $(LIBS)
89 $(BLD)/regex.$(O): ../src/regex.c ../src/regex.h ../src/config.h
90                 $(CC)  $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \
91                 ../src/regex.c $(CC_OUT)$@
93 ETAGS_CFLAGS  = -DHAVE_GETCWD
94 $(BLD)/etags.$(O): etags.c
95                 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c
97 CTAGSOBJ      = $(BLD)/ctags.$(O) \
98                 $(BLD)/getopt.$(O) \
99                 $(BLD)/getopt1.$(O) \
100                 $(BLD)/ntlib.$(O) \
101                 $(BLD)/regex.$(O)
103 $(BLD)/ctags.exe:  $(CTAGSOBJ)
104                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS)
106 ctags.c:        etags.c
107                 - $(DEL) ctags.c
108                 $(CP) etags.c ctags.c
110 CTAGS_CFLAGS  = -DCTAGS $(ETAGS_CFLAGS)
111 $(BLD)/ctags.$(O): ctags.c
112                 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c
115 # don't know what to do with these yet...
117 # $(BLD)/sorted-doc.exe:        $(BLD)/sorted-doc.$(O)
118 # $(BLD)/yow.exe:               $(BLD)/yow.$(O)
119 # $(BLD)/emacstool.exe:         $(BLD)/emacstool.$(O)
120 # $(BLD)/leditcfns.exe:         $(BLD)/leditcfns.$(O)
121 # $(BLD)/server.exe:            $(BLD)/server.$(O)
122 # $(BLD)/cvtmail.exe:           $(BLD)/cvtmail.$(O)
123 # $(BLD)/digest-doc.exe:        $(BLD)/digest-doc.$(O)
124 # $(BLD)/emacsclient.exe:       $(BLD)/emacsclient.$(O)
125 # $(BLD)/test-distrib.exe:      $(BLD)/test-distrib.$(O)
128 # From ..\src\Makefile.in
129 # It doesn't matter if the real name is *.obj for the files in this list,
130 # make-docfile blindly replaces .o with .c anyway.  Keep .o in this list
131 # as it is required by code in doc.c.
133 obj=    sunfns.o dosfns.o msdos.o \
134         xterm.o xfns.o xmenu.o xselect.o xrdb.o  fringe.o image.o \
135         mac.o macterm.o macfns.o macmenu.o fontset.o \
136         w32.o w32bdf.o w32console.o w32fns.o w32heap.o w32inevt.o \
137         w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o \
138         dispnew.o frame.o scroll.o xdisp.o window.o \
139         charset.o coding.o category.o ccl.o \
140         cm.o term.o xfaces.o \
141         emacs.o keyboard.o macros.o keymap.o sysdep.o \
142         buffer.o filelock.o insdel.o marker.o \
143         minibuf.o fileio.o dired.o filemode.o \
144         cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
145         alloc.o data.o doc.o editfns.o callint.o \
146         eval.o floatfns.o fns.o print.o lread.o \
147         abbrev.o syntax.o bytecode.o \
148         process.o callproc.o \
149         region-cache.o sound.o atimer.o \
150         doprnt.o strftime.o intervals.o textprop.o composite.o md5.o
153 # These are the lisp files that are loaded up in loadup.el
155 lispsource = ../lisp/
157 MOUSE_SUPPORT = $(lispsource)select.elc $(lispsource)scroll-bar.elc $(lispsource)mouse.elc $(lispsource)tooltip.elc
158 WINNT_SUPPORT = $(lispsource)ls-lisp.elc $(lispsource)disp-table.elc $(lispsource)w32-fns.elc $(lispsource)dos-w32.elc $(lispsource)w32-vars.elc
160 # lisp files that are loaded up on other platforms
161 MSDOS_SUPPORT = $(lispsource)dos-fns.elc $(lispsource)dos-vars.elc $(lispsource)international/ccl.elc $(lispsource)international/codepage.elc
162 VMS_SUPPORT = $(lispsource)vmsproc.elc $(lispsource)vms-patch.elc
164 lisp1= \
165         $(lispsource)abbrev.elc \
166         $(lispsource)buff-menu.elc \
167         $(lispsource)button.elc \
168         $(lispsource)emacs-lisp/byte-run.elc \
169         $(lispsource)cus-face.elc \
170         $(lispsource)cus-start.elc \
171         $(lispsource)custom.elc \
172         $(lispsource)emacs-lisp/backquote.elc \
173         $(lispsource)emacs-lisp/lisp-mode.elc \
174         $(lispsource)emacs-lisp/lisp.elc \
175         $(lispsource)facemenu.elc \
176         $(MOUSE_SUPPORT) \
177         $(lispsource)faces.elc \
178         $(lispsource)files.elc \
179         $(lispsource)emacs-lisp/float-sup.elc \
180         $(lispsource)format.elc \
181         $(lispsource)frame.elc \
182         $(lispsource)help.elc \
183         $(lispsource)indent.elc \
184         $(lispsource)isearch.elc \
185         $(lispsource)rfn-eshadow.elc \
186         $(lispsource)loadup.el \
187         $(lispsource)loaddefs.el \
188         $(lispsource)bindings.elc \
189         $(lispsource)emacs-lisp/map-ynp.elc \
190         $(lispsource)env.elc \
191         $(lispsource)international/mule.elc \
192         $(lispsource)international/mule-conf.el \
193         $(lispsource)international/mule-cmds.elc \
194         $(lispsource)international/characters.elc \
195         $(lispsource)international/ucs-tables.elc \
196         $(lispsource)international/utf-8.elc \
197         $(lispsource)international/utf-16.elc \
198         $(lispsource)international/latin-1.el \
199         $(lispsource)international/latin-2.el \
200         $(lispsource)international/latin-3.el \
201         $(lispsource)international/latin-4.el \
202         $(lispsource)international/latin-5.el \
203         $(lispsource)international/latin-8.el \
204         $(lispsource)international/latin-9.el \
205         $(lispsource)fringe.elc \
206         $(lispsource)image.elc \
207         $(lispsource)international/fontset.elc \
208         $(lispsource)dnd.elc \
209         $(lispsource)mwheel.elc \
210         $(lispsource)tool-bar.elc \
211         $(lispsource)case-table.elc
213 lisp2 = \
214         $(lispsource)language/chinese.elc \
215         $(lispsource)language/cyrillic.elc \
216         $(lispsource)language/indian.elc \
217         $(lispsource)language/devanagari.el \
218         $(lispsource)language/kannada.el \
219         $(lispsource)language/malayalam.el \
220         $(lispsource)language/tamil.el \
221         $(lispsource)language/english.el \
222         $(lispsource)language/ethiopic.elc \
223         $(lispsource)language/european.elc \
224         $(lispsource)language/czech.el \
225         $(lispsource)language/slovak.el \
226         $(lispsource)language/romanian.el \
227         $(lispsource)language/greek.el \
228         $(lispsource)language/hebrew.el \
229         $(lispsource)language/japanese.el \
230         $(lispsource)language/korean.el \
231         $(lispsource)language/lao.el \
232         $(lispsource)language/thai.el \
233         $(lispsource)language/tibetan.elc \
234         $(lispsource)language/vietnamese.elc \
235         $(lispsource)language/misc-lang.el \
236         $(lispsource)language/utf-8-lang.el \
237         $(lispsource)language/georgian.el \
238         $(lispsource)menu-bar.elc \
239         $(lispsource)paths.el \
240         $(lispsource)register.elc \
241         $(lispsource)replace.elc \
242         $(lispsource)simple.elc \
243         $(lispsource)startup.elc \
244         $(lispsource)subr.elc \
245         $(lispsource)term/tty-colors.elc \
246         $(lispsource)font-core.elc \
247         $(lispsource)emacs-lisp/syntax.elc \
248         $(lispsource)font-lock.elc \
249         $(lispsource)jit-lock.elc \
250         $(lispsource)textmodes/fill.elc \
251         $(lispsource)textmodes/page.elc \
252         $(lispsource)textmodes/paragraphs.elc \
253         $(lispsource)textmodes/text-mode.elc \
254         $(lispsource)emacs-lisp/timer.elc \
255         $(lispsource)vc-hooks.elc \
256         $(lispsource)jka-cmpr-hook.elc \
257         $(lispsource)ediff-hook.elc \
258         $(VMS_SUPPORT) \
259         $(MSDOS_SUPPORT) \
260         $(WINNT_SUPPORT) \
261         $(lispsource)widget.elc \
262         $(lispsource)window.elc \
263         $(lispsource)version.el
266 DOC           = DOC
267 $(DOC):         $(BLD) $(BLD)/make-docfile.exe ../src/$(BLD)/temacs.exe $(lisp1) $(lisp2)
268                 - $(DEL) $(DOC)
269                 "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj)
270                 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp1)
271                 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp2)
272                 $(CP) $(DOC) ../etc/DOC-X
273                 - mkdir "../src/$(OBJDIR)"
274                 - mkdir "../src/$(OBJDIR)/etc"
275                 $(CP) $(DOC) ../src/$(OBJDIR)/etc/DOC-X
277 {$(BLD)}.$(O){$(BLD)}.exe:
278                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $*.$(O) $(LIBS)
281 # Build the executables
283 all:            $(BLD) $(ALL) $(DOC)
286 # Assuming INSTALL_DIR is defined, build and install emacs in it.
288 INSTALL_FILES = $(ALL)
289 install:        $(INSTALL_FILES)
290                 - mkdir "$(INSTALL_DIR)/bin"
291                 $(CP) $(BLD)/etags.exe $(INSTALL_DIR)/bin
292                 $(CP) $(BLD)/ebrowse.exe $(INSTALL_DIR)/bin
293                 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin
294                 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin
295                 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin
296                 - mkdir "$(INSTALL_DIR)/etc"
297                 $(CP) $(DOC) $(INSTALL_DIR)/etc
300 # Maintenance
302 clean:
303                 - $(DEL) *~ DOC* $(COMPILER_TEMP_FILES)
304                 - $(DEL) ctags.c
305                 - $(DEL) getopt.h
306                 - $(DEL_TREE) $(OBJDIR)
308 cleanall:       clean
309                 - $(DEL_TREE) obj
310                 - $(DEL_TREE) obj-spd
311                 - $(DEL_TREE) oo
312                 - $(DEL_TREE) oo-spd
315 # Headers we would preprocess if we could.
317 ../src/config.h:        ../nt/$(CONFIG_H)
318                         echo config.h has changed. Re-run configure.bat.
319                         exit -1
321 getopt.h:               getopt_.h
322                         $(CP) $(ALL_DEPS) $@
324 ### DEPENDENCIES ###
326 EMACS_ROOT      = ..
327 SRC             = .
329 $(BLD)/alloca.$(O) : \
330         $(SRC)/alloca.c \
331         $(EMACS_ROOT)/src/s/ms-w32.h \
332         $(EMACS_ROOT)/src/m/intel386.h \
333         $(EMACS_ROOT)/src/config.h \
334         $(EMACS_ROOT)/src/blockinput.h
336 $(BLD)/b2m.$(O) : \
337         $(SRC)/b2m.c \
338         $(EMACS_ROOT)/src/s/ms-w32.h \
339         $(EMACS_ROOT)/src/m/intel386.h \
340         $(EMACS_ROOT)/lib-src/../src/config.h
342 $(BLD)/ctags.$(O) : \
343         $(SRC)/ctags.c \
344         $(EMACS_ROOT)/nt/inc/sys/param.h \
345         $(EMACS_ROOT)/src/s/ms-w32.h \
346         $(EMACS_ROOT)/src/m/intel386.h \
347         $(EMACS_ROOT)/lib-src/../src/config.h \
348         $(SRC)/ntlib.h \
349         $(SRC)/getopt.h
351 $(BLD)/cvtmail.$(O) : \
352         $(SRC)/cvtmail.c
354 $(BLD)/digest-doc.$(O) : \
355         $(SRC)/digest-doc.c
357 $(BLD)/emacsclient.$(O) : \
358         $(SRC)/emacsclient.c \
359         $(EMACS_ROOT)/src/s/ms-w32.h \
360         $(EMACS_ROOT)/src/m/intel386.h \
361         $(EMACS_ROOT)/lib-src/../src/config.h
363 $(BLD)/emacstool.$(O) : \
364         $(SRC)/emacstool.c \
365         $(EMACS_ROOT)/nt/inc/sys/file.h
367 $(BLD)/etags.$(O) : \
368         $(SRC)/etags.c \
369         $(EMACS_ROOT)/nt/inc/sys/param.h \
370         $(EMACS_ROOT)/src/s/ms-w32.h \
371         $(EMACS_ROOT)/src/m/intel386.h \
372         $(EMACS_ROOT)/lib-src/../src/config.h \
373         $(SRC)/ntlib.h \
374         $(SRC)/getopt.h
376 $(BLD)/fakemail.$(O) : \
377         $(SRC)/fakemail.c \
378         $(SRC)/ntlib.h \
379         $(EMACS_ROOT)/src/s/ms-w32.h \
380         $(EMACS_ROOT)/src/m/intel386.h \
381         $(EMACS_ROOT)/lib-src/../src/config.h \
382         $(EMACS_ROOT)/nt/inc/pwd.h
384 $(BLD)/getdate.$(O) : \
385         $(SRC)/getdate.c \
386         $(EMACS_ROOT)/src/s/ms-w32.h \
387         $(EMACS_ROOT)/src/m/intel386.h \
388         $(EMACS_ROOT)/src/config.h \
389         $(MSTOOLS_SYS)/types.h
391 $(BLD)/getopt.$(O) : \
392         $(SRC)/getopt.c \
393         $(EMACS_ROOT)/src/s/ms-w32.h \
394         $(EMACS_ROOT)/src/m/intel386.h \
395         $(EMACS_ROOT)/src/config.h \
396         $(SRC)/ntlib.h \
397         $(SRC)/getopt.h
399 $(BLD)/getopt1.$(O) : \
400         $(SRC)/getopt1.c \
401         $(EMACS_ROOT)/src/s/ms-w32.h \
402         $(EMACS_ROOT)/src/m/intel386.h \
403         $(EMACS_ROOT)/src/config.h \
404         $(SRC)/getopt.h
406 $(BLD)/hexl.$(O) : \
407         $(SRC)/hexl.c
409 $(BLD)/leditcfns.$(O) : \
410         $(SRC)/leditcfns.c
412 $(BLD)/make-docfile.$(O) : \
413         $(SRC)/make-docfile.c \
414         $(EMACS_ROOT)/src/config.h
416 $(BLD)/make-path.$(O) : \
417         $(SRC)/make-path.c
419 $(BLD)/movemail.$(O) : \
420         $(SRC)/movemail.c \
421         $(EMACS_ROOT)/src/s/ms-w32.h \
422         $(EMACS_ROOT)/src/m/intel386.h \
423         $(EMACS_ROOT)/lib-src/../src/config.h \
424         $(EMACS_ROOT)/nt/inc/sys/file.h \
425         $(EMACS_ROOT)/lib-src/../src/syswait.h \
426         $(EMACS_ROOT)/nt/inc/pwd.h \
427         $(SRC)/ntlib.h
428                 $(CC) $(CFLAGS) -DUSG $(CC_OUT)$@ movemail.c
430 $(BLD)/ntlib.$(O) : \
431         $(SRC)/ntlib.c \
432         $(SRC)/ntlib.h \
433         $(EMACS_ROOT)/nt/inc/pwd.h
435 $(BLD)/pop.$(O) : \
436         $(SRC)/pop.c \
437         $(SRC)/pop.h \
438         $(SRC)/ntlib.h
440 $(BLD)/profile.$(O) : \
441         $(SRC)/profile.c \
442         $(EMACS_ROOT)/src/s/ms-w32.h \
443         $(EMACS_ROOT)/src/m/intel386.h \
444         $(EMACS_ROOT)/lib-src/../src/config.h \
445         $(EMACS_ROOT)/lib-src/../src/systime.h
447 $(BLD)/qsort.$(O) : \
448         $(SRC)/qsort.c
450 $(BLD)/sorted-doc.$(O) : \
451         $(SRC)/sorted-doc.c
453 $(BLD)/tcp.$(O) : \
454         $(SRC)/tcp.c
456 $(BLD)/test-distrib.$(O) : \
457         $(SRC)/test-distrib.c
459 $(BLD)/timer.$(O) : \
460         $(SRC)/timer.c \
461         $(EMACS_ROOT)/src/s/ms-w32.h \
462         $(EMACS_ROOT)/src/m/intel386.h \
463         $(EMACS_ROOT)/lib-src/../src/config.h
465 $(BLD)/yow.$(O) : \
466         $(SRC)/yow.c \
467         $(EMACS_ROOT)/lib-src/../src/paths.h