*** empty log message ***
[emacs.git] / nt / makefile.w32-in
blob7106f7a41f91db9854888e7c0d3aaec2db533d74
2 #  Top level makefile for building GNU Emacs on Windows NT
4 #  This file is part of GNU Emacs.
5 #  
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.
10 #  
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.
15 #  
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
18 #  the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 #  Boston, MA 02111-1307, USA.
21 ALL             = addpm ddeclient runemacs cmdproxy addsection preprep
23 .PHONY: $(ALL)
25 TRES            = $(BLD)/emacs.res
27 addpm:            $(BLD) $(BLD)/addpm.exe
28 $(BLD)/addpm.exe: $(BLD)/addpm.$(O)
29                   $(LINK) $(LINK_OUT)$@ \
30                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)
32 ddeclient:        $(BLD) $(BLD)/ddeclient.exe
33 $(BLD)/ddeclient.exe: $(BLD)/ddeclient.$(O)
34                   $(LINK) $(LINK_OUT)$@ \
35                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)
37 cmdproxy:         $(BLD) $(BLD)/cmdproxy.exe
38 $(BLD)/cmdproxy.exe: $(BLD)/cmdproxy.$(O)
39                   $(LINK) $(LINK_OUT)$@ \
40                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32)
42 addsection:       $(BLD) $(BLD)/addsection.exe
43 $(BLD)/addsection.exe: $(BLD)/addsection.$(O)
44                   $(LINK) $(LINK_OUT)$@ \
45                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32)
47 preprep:          $(BLD) $(BLD)/preprep.exe
48 $(BLD)/preprep.exe: $(BLD)/preprep.$(O)
49                   $(LINK) $(LINK_OUT)$@ \
50                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS)
53 # The resource file.  NT 3.10 requires the use of cvtres; even though
54 # it is not necessary on later versions, it is still ok to use it.
56 $(TRES):        emacs.rc
57                 $(RC) $(RC_OUT)$(BLD)/emacs.res $(ALL_DEPS)
59 runemacs:         $(BLD) $(BLD)/runemacs.exe
60 $(BLD)/runemacs.exe: $(BLD)/runemacs.$(O) $(TRES)
61                   $(LINK) $(LINK_OUT)$@ $(SUBSYSTEM_WINDOWS) \
62                   $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)
64 which-sh:
65         @echo Using $(THE_SHELL) as shell.
68 # Build emacs
70 all:    which-sh $(BLD) $(ALL) all-other-dirs-$(SHELLTYPE)
72 all-other-dirs-CMD:
73         cd ..\lib-src
74         $(MAKE) $(MFLAGS) all
75         cd ..\src
76         $(MAKE) $(MFLAGS) all
77         cd ..\lisp
78         $(MAKE) $(MFLAGS) all
79         cd ..\leim
80         $(MAKE) $(MFLAGS) all
81         cd ..\nt
83 all-other-dirs-SH:
84         $(MAKE) $(MFLAGS) -C ../lib-src all
85         $(MAKE) $(MFLAGS) -C ../src all
86         $(MAKE) $(MFLAGS) -C ../lisp all
87         $(MAKE) $(MFLAGS) -C ../leim all
89 recompile:      recompile-$(SHELLTYPE)
91 recompile-CMD:
92         cd ..\lisp
93         $(MAKE) $(MFLAGS) recompile
94         cd ..\nt
96 recompile-SH:
97         $(MAKE) $(MFLAGS) -C ../lisp recompile
99 bootstrap:      $(BLD) $(ALL) bootstrap-$(SHELLTYPE)
101 bootstrap-CMD:
102         cd ..\src
103         $(MAKE) $(MFLAGS) bootstrap
104         $(MAKE) $(MFLAGS) bootstrap-clean
105         cd ..\lisp
106         $(MAKE) $(MFLAGS) bootstrap
107         cd ..\nt
109 bootstrap-SH:
110         $(MAKE) $(MFLAGS) -C ../src bootstrap
111         $(MAKE) $(MFLAGS) -C ../src bootstrap-clean
112         $(MAKE) $(MFLAGS) -C ../lisp bootstrap
114 bootstrap-clean: bootstrap-clean-$(SHELLTYPE)
116 bootstrap-clean-CMD:
117         cd ..\src
118         $(MAKE) $(MFLAGS) bootstrap-clean
119         cd ..\lisp
120         $(MAKE) $(MFLAGS) bootstrap-clean
122 bootstrap-clean-SH:
123         $(MAKE) $(MFLAGS) -C ../src bootstrap-clean
124         $(MAKE) $(MFLAGS) -C ../lisp bootstrap-clean
126 $(INSTALL_DIR):
127         - mkdir "$(INSTALL_DIR)"
129 $(INSTALL_DIR)/bin:
130         - mkdir "$(INSTALL_DIR)/bin"
133 # Build and install emacs in INSTALL_DIR
135 install: all $(INSTALL_DIR)/bin install-other-dirs-$(SHELLTYPE)
136         - $(CP) $(BLD)/addpm.exe $(INSTALL_DIR)/bin
137         - $(CP) $(BLD)/ddeclient.exe $(INSTALL_DIR)/bin
138         - $(CP) $(BLD)/cmdproxy.exe $(INSTALL_DIR)/bin
139         - $(CP) $(BLD)/runemacs.exe $(INSTALL_DIR)/bin
140         - $(CP) ../lib-src/fns-*.el $(INSTALL_DIR)/bin
141         - "$(INSTALL_DIR)/bin/addpm" /q
142         - $(DEL) ../same-dir.tst
143         - $(DEL) $(INSTALL_DIR)/same-dir.tst
144         - mkdir "$(INSTALL_DIR)/etc/icons"
145         - $(CP_DIR) icons $(INSTALL_DIR)/etc/icons
146         echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst"
147         $(IFNOTSAMEDIR) $(MAKE) $(MFLAGS) real_install $(ENDIF)
148         - $(DEL) ../same-dir.tst
149         - $(DEL) $(INSTALL_DIR)/same-dir.tst
151 install-other-dirs-CMD:
152         cd ..\lib-src
153         $(MAKE) $(MFLAGS) install
154         cd ..\src
155         $(MAKE) $(MFLAGS) install
156         cd ..\lisp
157         $(MAKE) $(MFLAGS) install
158         cd ..\leim
159         $(MAKE) $(MFLAGS) install
160         cd ..\nt
162 install-other-dirs-SH:
163         $(MAKE) $(MFLAGS) -C ../lib-src install
164         $(MAKE) $(MFLAGS) -C ../src install
165         $(MAKE) $(MFLAGS) -C ../lisp install
166         $(MAKE) $(MFLAGS) -C ../leim install
168 real_install:
169         - $(DEL) ../same-dir.tst
170         - $(DEL) $(INSTALL_DIR)/same-dir.tst
171         echo SameDirTest > $(INSTALL_DIR)/same-dir.tst
172         - mkdir "$(INSTALL_DIR)/etc"
173         - mkdir "$(INSTALL_DIR)/info"
174         - mkdir "$(INSTALL_DIR)/lock"
175         - mkdir "$(INSTALL_DIR)/data"
176         - mkdir "$(INSTALL_DIR)/site-lisp"
177         - mkdir "$(INSTALL_DIR)/etc/icons"
178         - $(CP_DIR) icons $(INSTALL_DIR)/etc/icons
179         $(IFNOTSAMEDIR) $(CP_DIR) ../etc $(INSTALL_DIR)/etc $(ENDIF)
180         $(IFNOTSAMEDIR) $(CP_DIR) ../info $(INSTALL_DIR)/info $(ENDIF)
181         - $(DEL) ../same-dir.tst
182         - $(DEL) $(INSTALL_DIR)/same-dir.tst
185 # Maintenance
187 clean:  clean-other-dirs-$(SHELLTYPE)
188         - $(DEL) *~ *.pdb
189         - $(DEL_TREE) $(OBJDIR)
190         - $(DEL) ../etc/DOC ../etc/DOC-X
192 clean-other-dirs-CMD:
193         cd ..\lib-src
194         $(MAKE) $(MFLAGS) clean
195         cd ..\src
196         $(MAKE) $(MFLAGS) clean
197         cd ..\lisp
198         $(MAKE) $(MFLAGS) clean
199         cd ..\leim
200         $(MAKE) $(MFLAGS) clean
201         cd ..\nt
203 clean-other-dirs-SH:
204         $(MAKE) $(MFLAGS) -C ../lib-src clean
205         $(MAKE) $(MFLAGS) -C ../src clean
206         $(MAKE) $(MFLAGS) -C ../lisp clean
207         $(MAKE) $(MFLAGS) -C ../leim clean
209 cleanall: clean
210          - $(DEL_TREE) obj
211          - $(DEL_TREE) obj-spd
212          - $(DEL_TREE) oo
213          - $(DEL_TREE) oo-spd
215 realclean: cleanall
216         - $(DEL_TREE) ../bin