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 = $(BLD)\addpm.exe $(BLD)\runemacs.exe
27 TRES = $(BLD)\emacs.res
29 TRES = $(BLD)\emacs.rbj
33 $(CC) $(CFLAGS) -Fo$@ $<
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
42 # The resource file. NT 3.10 requires the use of cvtres; even though
43 # it is not necessary on later versions, it is still ok to use it.
46 $(RC) -Fo$(BLD)\emacs.res $**
48 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res
51 runemacs: $(BLD) $(BLD)\runemacs.exe
52 $(BLD)\runemacs.obj: runemacs.c
53 $(BLD)\runemacs.exe: $(BLD)\runemacs.obj $(TRES)
54 $(LINK) -out:$@ -subsystem:windows -entry:WinMainCRTStartup \
55 $(SYS_LDFLAGS) $** $(BASE_LIBS) $(ADVAPI32) user32.lib
57 # Since Windows 95 does not support multiple commands on one command line
58 # (e.g., in for loops), we cannot use for loops any more.
59 # SUBDIRS = lib-src src lisp
64 BUILD_CMD = $(MAKE) -f makefile.nt all
75 emacs.bat: emacs.bat.in
76 echo @echo off > emacs.bat
77 echo REM !!! Warning: This file automatically generated !!! >> emacs.bat
78 echo set emacs_dir=$(INSTALL_DIR)>> emacs.bat
79 type emacs.bat.in >> emacs.bat
82 # Build and install emacs in INSTALL_DIR
84 INSTALL_CMD = $(MAKE) -f makefile.nt install
85 install: all emacs.bat
86 - mkdir $(INSTALL_DIR)
94 - $(CP) emacs.bat $(INSTALL_DIR)\bin
95 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
96 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
97 - $(ADDPM) $(INSTALL_DIR)
98 - $(DEL) ..\same-dir.tst
99 - $(DEL) $(INSTALL_DIR)\same-dir.tst
100 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
101 if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install
102 - $(DEL) ..\same-dir.tst
103 - $(DEL) $(INSTALL_DIR)\same-dir.tst
106 # This installs executables from ..\bin into the installation directory
107 # without building anything.
110 - mkdir $(INSTALL_DIR)\data
111 $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc
112 - mkdir $(INSTALL_DIR)\bin
113 - $(CP) emacs.bat $(INSTALL_DIR)\bin
114 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
115 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
116 - $(DEL) ..\same-dir.tst
117 - $(DEL) $(INSTALL_DIR)\same-dir.tst
118 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
119 if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin
120 if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin
121 if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin
122 if not exist ..\same-dir.tst nmake -f $(MAKE) real_install
123 - $(DEL) ..\same-dir.tst
124 - $(DEL) $(INSTALL_DIR)\same-dir.tst
127 - $(DEL) ..\same-dir.tst
128 - $(DEL) $(INSTALL_DIR)\same-dir.tst
129 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
130 - mkdir $(INSTALL_DIR)\etc
131 - mkdir $(INSTALL_DIR)\info
132 - mkdir $(INSTALL_DIR)\lock
133 - mkdir $(INSTALL_DIR)\data
134 if not exist ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc
135 if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info
136 - $(DEL) ..\same-dir.tst
137 - $(DEL) $(INSTALL_DIR)\same-dir.tst
142 CLEAN_CMD = $(MAKE) -f makefile.nt clean
143 clean:; - $(DEL) *~ *.pdb
144 - $(DEL_TREE) deleted
145 - $(DEL_TREE) $(OBJDIR)
147 - $(DEL) ..\etc\DOC ..\etc\DOC-X