(top-level) <Qbackground_color, Qforeground_color>: Make
[emacs.git] / nt / makefile.w32-in
blob8afa10fa62bfe0eeea2262ce14423eea31ce833b
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 bootstrap:      $(BLD) $(ALL) bootstrap-$(SHELLTYPE)
91 bootstrap-CMD:
92         cd ..\src
93         $(MAKE) $(MFLAGS) bootstrap
94         $(MAKE) $(MFLAGS) bootstrap-clean
95         cd ..\lisp
96         $(MAKE) $(MFLAGS) bootstrap
97         cd ..\nt
99 bootstrap-SH:
100         $(MAKE) $(MFLAGS) -C ../src bootstrap
101         $(MAKE) $(MFLAGS) -C ../src bootstrap-clean
102         $(MAKE) $(MFLAGS) -C ../lisp bootstrap
104 bootstrap-clean: bootstrap-clean-$(SHELLTYPE)
106 bootstrap-clean-CMD:
107         cd ..\src
108         $(MAKE) $(MFLAGS) bootstrap-clean
109         cd ..\lisp
110         $(MAKE) $(MFLAGS) bootstrap-clean
112 bootstrap-clean-SH:
113         $(MAKE) $(MFLAGS) -C ../src bootstrap-clean
114         $(MAKE) $(MFLAGS) -C ../lisp bootstrap-clean
116 $(INSTALL_DIR):
117         - mkdir "$(INSTALL_DIR)"
119 $(INSTALL_DIR)/bin:
120         - mkdir "$(INSTALL_DIR)/bin"
123 # Build and install emacs in INSTALL_DIR
125 install: all $(INSTALL_DIR)/bin install-other-dirs-$(SHELLTYPE)
126         - $(CP) $(BLD)/addpm.exe $(INSTALL_DIR)/bin
127         - $(CP) $(BLD)/ddeclient.exe $(INSTALL_DIR)/bin
128         - $(CP) $(BLD)/cmdproxy.exe $(INSTALL_DIR)/bin
129         - $(CP) $(BLD)/runemacs.exe $(INSTALL_DIR)/bin
130         - $(CP) ../lib-src/fns-*.el $(INSTALL_DIR)/bin
131         - "$(INSTALL_DIR)/bin/addpm" /q
132         - $(DEL) ../same-dir.tst
133         - $(DEL) $(INSTALL_DIR)/same-dir.tst
134         - mkdir "$(INSTALL_DIR)/etc/icons"
135         - $(CP_DIR) icons $(INSTALL_DIR)/etc/icons
136         echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst"
137         $(IFNOTSAMEDIR) $(MAKE) $(MFLAGS) real_install $(ENDIF)
138         - $(DEL) ../same-dir.tst
139         - $(DEL) $(INSTALL_DIR)/same-dir.tst
141 install-other-dirs-CMD:
142         cd ..\lib-src
143         $(MAKE) $(MFLAGS) install
144         cd ..\src
145         $(MAKE) $(MFLAGS) install
146         cd ..\lisp
147         $(MAKE) $(MFLAGS) install
148         cd ..\leim
149         $(MAKE) $(MFLAGS) install
150         cd ..\nt
152 install-other-dirs-SH:
153         $(MAKE) $(MFLAGS) -C ../lib-src install
154         $(MAKE) $(MFLAGS) -C ../src install
155         $(MAKE) $(MFLAGS) -C ../lisp install
156         $(MAKE) $(MFLAGS) -C ../leim install
158 real_install:
159         - $(DEL) ../same-dir.tst
160         - $(DEL) $(INSTALL_DIR)/same-dir.tst
161         echo SameDirTest > $(INSTALL_DIR)/same-dir.tst
162         - mkdir "$(INSTALL_DIR)/etc"
163         - mkdir "$(INSTALL_DIR)/info"
164         - mkdir "$(INSTALL_DIR)/lock"
165         - mkdir "$(INSTALL_DIR)/data"
166         - mkdir "$(INSTALL_DIR)/site-lisp"
167         - mkdir "$(INSTALL_DIR)/etc/icons"
168         - $(CP_DIR) icons $(INSTALL_DIR)/etc/icons
169         $(IFNOTSAMEDIR) $(CP_DIR) ../etc $(INSTALL_DIR)/etc $(ENDIF)
170         $(IFNOTSAMEDIR) $(CP_DIR) ../info $(INSTALL_DIR)/info $(ENDIF)
171         - $(DEL) ../same-dir.tst
172         - $(DEL) $(INSTALL_DIR)/same-dir.tst
175 # Maintenance
177 clean:  clean-other-dirs-$(SHELLTYPE)
178         - $(DEL) *~ *.pdb
179         - $(DEL_TREE) $(OBJDIR)
180         - $(DEL) ../etc/DOC ../etc/DOC-X
182 clean-other-dirs-CMD:
183         cd ..\lib-src
184         $(MAKE) $(MFLAGS) clean
185         cd ..\src
186         $(MAKE) $(MFLAGS) clean
187         cd ..\lisp
188         $(MAKE) $(MFLAGS) clean
189         cd ..\leim
190         $(MAKE) $(MFLAGS) clean
191         cd ..\nt
193 clean-other-dirs-SH:
194         $(MAKE) $(MFLAGS) -C ../lib-src clean
195         $(MAKE) $(MFLAGS) -C ../src clean
196         $(MAKE) $(MFLAGS) -C ../lisp clean
197         $(MAKE) $(MFLAGS) -C ../leim clean
199 cleanall: clean
200          - $(DEL_TREE) obj
201          - $(DEL_TREE) obj-spd
202          - $(DEL_TREE) oo
203          - $(DEL_TREE) oo-spd
205 realclean: cleanall
206         - $(DEL_TREE) ../bin