Include frame.h before fontset.h.
[bpt/emacs.git] / nt / makefile.nt
1 #
2 # Top level makefile for building GNU Emacs on Windows NT
3 #
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.
20 #
21 # Geoff Voelker (voelker@cs.washington.edu) 11-20-93
22 # 9-6-94
23 !include makefile.def
24
25 ALL = $(BLD)\addpm.exe $(BLD)\ddeclient.exe $(BLD)\runemacs.exe $(BLD)\cmdproxy.exe
26 !if $(MSVCNT11)
27 TRES = $(BLD)\emacs.res
28 !else
29 TRES = $(BLD)\emacs.rbj
30 !endif
31
32 .c{$(BLD)}.obj:
33 $(CC) $(CFLAGS) -Fo$@ $<
34
35 addpm: $(BLD) $(BLD)\addpm.exe
36 $(BLD)\addpm.obj: addpm.c
37 $(BLD)\addpm.exe: $(BLD)\addpm.obj
38 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \
39 $(SYS_LDFLAGS) $** $(BASE_LIBS) $(ADVAPI32) user32.lib
40
41 ddeclient: $(BLD) $(BLD)\ddeclient.exe
42 $(BLD)\ddeclient.obj: ddeclient.c
43 $(BLD)\ddeclient.exe: $(BLD)\ddeclient.obj
44 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \
45 $(SYS_LDFLAGS) $** $(BASE_LIBS) $(ADVAPI32) user32.lib
46
47 cmdproxy: $(BLD) $(BLD)\cmdproxy.exe
48 $(BLD)\cmdproxy.obj: cmdproxy.c
49 $(BLD)\cmdproxy.exe: $(BLD)\cmdproxy.obj
50 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \
51 $(SYS_LDFLAGS) $** $(BASE_LIBS) user32.lib
52
53 #
54 # The resource file. NT 3.10 requires the use of cvtres; even though
55 # it is not necessary on later versions, it is still ok to use it.
56 #
57 $(TRES): emacs.rc
58 $(RC) -Fo$(BLD)\emacs.res $**
59 !if !$(MSVCNT11)
60 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res
61 !endif
62
63 runemacs: $(BLD) $(BLD)\runemacs.exe
64 $(BLD)\runemacs.obj: runemacs.c
65 $(BLD)\runemacs.exe: $(BLD)\runemacs.obj $(TRES)
66 $(LINK) -out:$@ -subsystem:windows -entry:WinMainCRTStartup \
67 $(SYS_LDFLAGS) $** $(BASE_LIBS) $(ADVAPI32) user32.lib
68
69 # Since Windows 95 does not support multiple commands on one command line
70 # (e.g., in for loops), we cannot use for loops any more.
71 # SUBDIRS = lib-src src lisp
72
73 #
74 # Build emacs
75 #
76 BUILD_CMD = $(MAKE) -f makefile.nt all
77 all: $(BLD) $(ALL)
78 cd ..\lib-src
79 $(BUILD_CMD)
80 cd ..\src
81 $(BUILD_CMD)
82 cd ..\lisp
83 $(BUILD_CMD)
84 cd ..\nt
85
86 $(INSTALL_DIR)\bin:
87 - mkdir $(INSTALL_DIR)\bin
88
89 $(INSTALL_DIR)\bin\emacs.bat: emacs.bat.in
90 echo @echo off > $@
91 echo REM !!! Warning: This file automatically generated !!! >> emacs.bat
92 echo set emacs_dir=$(INSTALL_DIR)>> $@
93 type emacs.bat.in >> $@
94
95 $(INSTALL_DIR)\bin\debug.bat: debug.bat.in
96 echo @echo off > $@
97 echo REM !!! Warning: This file automatically generated !!! >> debug.bat
98 echo set emacs_dir=$(INSTALL_DIR)>> $@
99 type debug.bat.in >> $@
100
101 batch_files: $(INSTALL_DIR)\bin \
102 $(INSTALL_DIR)\bin\emacs.bat \
103 $(INSTALL_DIR)\bin\debug.bat
104
105 #
106 # Build and install emacs in INSTALL_DIR
107 #
108 INSTALL_CMD = $(MAKE) -f makefile.nt install
109 install: all batch_files
110 - mkdir $(INSTALL_DIR)
111 cd ..\lib-src
112 $(INSTALL_CMD)
113 cd ..\src
114 $(INSTALL_CMD)
115 cd ..\lisp
116 $(INSTALL_CMD)
117 cd ..\nt
118 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
119 - $(CP) $(BLD)\ddeclient.exe $(INSTALL_DIR)\bin
120 - $(CP) $(BLD)\cmdproxy.exe $(INSTALL_DIR)\bin
121 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
122 - $(ADDPM) $(INSTALL_DIR)
123 - $(DEL) ..\same-dir.tst
124 - $(DEL) $(INSTALL_DIR)\same-dir.tst
125 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
126 if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install
127 - $(DEL) ..\same-dir.tst
128 - $(DEL) $(INSTALL_DIR)\same-dir.tst
129
130 #
131 # This installs executables from ..\bin into the installation directory
132 # without building anything.
133 #
134 fast_install: batch_files
135 - mkdir $(INSTALL_DIR)\data
136 $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc
137 - mkdir $(INSTALL_DIR)\bin
138 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
139 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
140 - $(DEL) ..\same-dir.tst
141 - $(DEL) $(INSTALL_DIR)\same-dir.tst
142 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
143 if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin
144 if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin
145 if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin
146 if not exist ..\same-dir.tst nmake -f $(MAKE) real_install
147 - $(DEL) ..\same-dir.tst
148 - $(DEL) $(INSTALL_DIR)\same-dir.tst
149
150 real_install:
151 - $(DEL) ..\same-dir.tst
152 - $(DEL) $(INSTALL_DIR)\same-dir.tst
153 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
154 - mkdir $(INSTALL_DIR)\etc
155 - mkdir $(INSTALL_DIR)\info
156 - mkdir $(INSTALL_DIR)\lock
157 - mkdir $(INSTALL_DIR)\data
158 - mkdir $(INSTALL_DIR)\site-lisp
159 if not exist ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc
160 if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info
161 - $(DEL) ..\same-dir.tst
162 - $(DEL) $(INSTALL_DIR)\same-dir.tst
163
164 #
165 # Maintenance
166 #
167 CLEAN_CMD = $(MAKE) -f makefile.nt clean
168 clean:; - $(DEL) *~ *.pdb
169 - $(DEL) *.orig
170 - $(DEL) *.rej
171 - $(DEL) *.crlf
172 - $(DEL_TREE) deleted
173 - $(DEL_TREE) obj
174 - $(DEL_TREE) obj-spd
175 - $(DEL_TREE) ..\bin
176 - $(DEL) ..\etc\DOC ..\etc\DOC-X
177 - $(DEL) emacs.bat
178 - $(DEL) debug.bat
179 cd ..\lib-src
180 $(CLEAN_CMD)
181 cd ..\src
182 $(CLEAN_CMD)
183 cd ..\lisp
184 $(CLEAN_CMD)
185 cd ..\nt