2 # Top level makefile for building GNU Emacs on Windows NT
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)
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
18 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
21 # Geoff Voelker (voelker@cs.washington.edu) 11-20-93
25 ALL = addpm ddeclient runemacs cmdproxy addsection preprep
27 TRES = $(BLD)\emacs.res
29 TRES = $(BLD)\emacs.rbj
32 addpm: $(BLD) $(BLD)\addpm.exe
33 $(BLD)\addpm.obj: addpm.c
34 $(BLD)\addpm.exe: $(BLD)\addpm.obj
35 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \
36 $(SYS_LDFLAGS) $** $(BASE_LIBS) $(ADVAPI32) user32.lib
38 ddeclient: $(BLD) $(BLD)\ddeclient.exe
39 $(BLD)\ddeclient.obj: ddeclient.c
40 $(BLD)\ddeclient.exe: $(BLD)\ddeclient.obj
41 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \
42 $(SYS_LDFLAGS) $** $(BASE_LIBS) $(ADVAPI32) user32.lib
44 cmdproxy: $(BLD) $(BLD)\cmdproxy.exe
45 $(BLD)\cmdproxy.obj: cmdproxy.c
46 $(BLD)\cmdproxy.exe: $(BLD)\cmdproxy.obj
47 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \
48 $(SYS_LDFLAGS) $** $(BASE_LIBS) user32.lib
50 addsection: $(BLD) $(BLD)\addsection.exe
51 $(BLD)\addsection.obj: addsection.c
52 $(BLD)\addsection.exe: $(BLD)\addsection.obj
53 $(LINK) -debug:full -out:$@ -subsystem:console -entry:mainCRTStartup \
54 $(SYS_LDFLAGS) $** $(BASE_LIBS) user32.lib
56 preprep: $(BLD) $(BLD)\preprep.exe
57 $(BLD)\preprep.obj: preprep.c
58 $(BLD)\preprep.exe: $(BLD)\preprep.obj
59 $(LINK) -debug:full -out:$@ -subsystem:console -entry:mainCRTStartup \
60 $(SYS_LDFLAGS) $** $(BASE_LIBS)
63 # The resource file. NT 3.10 requires the use of cvtres; even though
64 # it is not necessary on later versions, it is still ok to use it.
67 $(RC) -Fo$(BLD)\emacs.res $**
69 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res
72 runemacs: $(BLD) $(BLD)\runemacs.exe
73 $(BLD)\runemacs.obj: runemacs.c
74 $(BLD)\runemacs.exe: $(BLD)\runemacs.obj $(TRES)
75 $(LINK) -out:$@ -subsystem:windows -entry:WinMainCRTStartup \
76 $(SYS_LDFLAGS) $** $(BASE_LIBS) $(ADVAPI32) user32.lib
78 # Since Windows 95 does not support multiple commands on one command line
79 # (e.g., in for loops), we cannot use for loops any more.
80 # SUBDIRS = lib-src src lisp
85 BUILD_CMD = $(MAKE) -f makefile.nt all
96 - mkdir $(INSTALL_DIR)
99 - mkdir $(INSTALL_DIR)\bin
101 $(INSTALL_DIR)\bin\emacs.bat: emacs.bat.in
103 echo REM !!! Warning: This file automatically generated !!! >> emacs.bat
104 echo set emacs_dir=$(INSTALL_DIR)>> $@
105 type emacs.bat.in >> $@
107 $(INSTALL_DIR)\bin\debug.bat: debug.bat.in
109 echo REM !!! Warning: This file automatically generated !!! >> debug.bat
110 echo set emacs_dir=$(INSTALL_DIR)>> $@
111 type debug.bat.in >> $@
113 batch_files: $(INSTALL_DIR) \
115 $(INSTALL_DIR)\bin\emacs.bat \
116 $(INSTALL_DIR)\bin\debug.bat
119 # Build and install emacs in INSTALL_DIR
121 INSTALL_CMD = $(MAKE) -f makefile.nt install
122 install: all $(INSTALL_DIR) batch_files
130 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
131 - $(CP) $(BLD)\ddeclient.exe $(INSTALL_DIR)\bin
132 - $(CP) $(BLD)\cmdproxy.exe $(INSTALL_DIR)\bin
133 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
134 - $(CP) ..\lib-src\fns-*.el $(INSTALL_DIR)\bin
135 - $(ADDPM) $(INSTALL_DIR)
136 - $(DEL) ..\same-dir.tst
137 - $(DEL) $(INSTALL_DIR)\same-dir.tst
138 - mkdir $(INSTALL_DIR)\etc\icons
139 - $(CP_DIR) icons $(INSTALL_DIR)\etc\icons
140 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
141 if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install
142 - $(DEL) ..\same-dir.tst
143 - $(DEL) $(INSTALL_DIR)\same-dir.tst
146 # This installs executables from ..\bin into the installation directory
147 # without building anything.
149 fast_install: batch_files
150 - mkdir $(INSTALL_DIR)\data
151 $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc
152 - mkdir $(INSTALL_DIR)\bin
153 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
154 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
155 - $(DEL) ..\same-dir.tst
156 - $(DEL) $(INSTALL_DIR)\same-dir.tst
157 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
158 if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin
159 if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin
160 if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin
161 if not exist ..\same-dir.tst nmake -f $(MAKE) real_install
162 - $(DEL) ..\same-dir.tst
163 - $(DEL) $(INSTALL_DIR)\same-dir.tst
166 - $(DEL) ..\same-dir.tst
167 - $(DEL) $(INSTALL_DIR)\same-dir.tst
168 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
169 - mkdir $(INSTALL_DIR)\etc
170 - mkdir $(INSTALL_DIR)\info
171 - mkdir $(INSTALL_DIR)\lock
172 - mkdir $(INSTALL_DIR)\data
173 - mkdir $(INSTALL_DIR)\site-lisp
174 - mkdir $(INSTALL_DIR)\etc\icons
175 - $(CP_DIR) icons $(INSTALL_DIR)\etc\icons
176 if not exist ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc
177 if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info
178 - $(DEL) ..\same-dir.tst
179 - $(DEL) $(INSTALL_DIR)\same-dir.tst
184 CLEAN_CMD = $(MAKE) -f makefile.nt clean
185 clean:; - $(DEL) *~ *.pdb
189 - $(DEL_TREE) deleted
191 - $(DEL_TREE) obj-spd
193 - $(DEL) ..\etc\DOC ..\etc\DOC-X