]> code.delx.au - gnu-emacs/blob - nt/makefile.nt
(emacs.bat, debug.bat): Create them in the
[gnu-emacs] / 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
87 $(INSTALL_DIR)\bin\emacs.bat: emacs.bat.in
88 echo @echo off > $@
89 echo REM !!! Warning: This file automatically generated !!! >> emacs.bat
90 echo set emacs_dir=$(INSTALL_DIR)>> $@
91 type emacs.bat.in >> $@
92
93 $(INSTALL_DIR)\bin\debug.bat: debug.bat.in
94 echo @echo off > $@
95 echo REM !!! Warning: This file automatically generated !!! >> debug.bat
96 echo set emacs_dir=$(INSTALL_DIR)>> $@
97 type debug.bat.in >> $@
98
99 batch_files: $(INSTALL_DIR)\bin\emacs.bat $(INSTALL_DIR)\bin\debug.bat
100
101 #
102 # Build and install emacs in INSTALL_DIR
103 #
104 INSTALL_CMD = $(MAKE) -f makefile.nt install
105 install: all batch_files
106 - mkdir $(INSTALL_DIR)
107 cd ..\lib-src
108 $(INSTALL_CMD)
109 cd ..\src
110 $(INSTALL_CMD)
111 cd ..\lisp
112 $(INSTALL_CMD)
113 cd ..\nt
114 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
115 - $(CP) $(BLD)\ddeclient.exe $(INSTALL_DIR)\bin
116 - $(CP) $(BLD)\cmdproxy.exe $(INSTALL_DIR)\bin
117 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
118 - $(ADDPM) $(INSTALL_DIR)
119 - $(DEL) ..\same-dir.tst
120 - $(DEL) $(INSTALL_DIR)\same-dir.tst
121 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
122 if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install
123 - $(DEL) ..\same-dir.tst
124 - $(DEL) $(INSTALL_DIR)\same-dir.tst
125
126 #
127 # This installs executables from ..\bin into the installation directory
128 # without building anything.
129 #
130 fast_install: batch_files
131 - mkdir $(INSTALL_DIR)\data
132 $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc
133 - mkdir $(INSTALL_DIR)\bin
134 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
135 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
136 - $(DEL) ..\same-dir.tst
137 - $(DEL) $(INSTALL_DIR)\same-dir.tst
138 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
139 if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin
140 if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin
141 if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin
142 if not exist ..\same-dir.tst nmake -f $(MAKE) real_install
143 - $(DEL) ..\same-dir.tst
144 - $(DEL) $(INSTALL_DIR)\same-dir.tst
145
146 real_install:
147 - $(DEL) ..\same-dir.tst
148 - $(DEL) $(INSTALL_DIR)\same-dir.tst
149 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
150 - mkdir $(INSTALL_DIR)\etc
151 - mkdir $(INSTALL_DIR)\info
152 - mkdir $(INSTALL_DIR)\lock
153 - mkdir $(INSTALL_DIR)\data
154 - mkdir $(INSTALL_DIR)\site-lisp
155 if not exist ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc
156 if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info
157 - $(DEL) ..\same-dir.tst
158 - $(DEL) $(INSTALL_DIR)\same-dir.tst
159
160 #
161 # Maintenance
162 #
163 CLEAN_CMD = $(MAKE) -f makefile.nt clean
164 clean:; - $(DEL) *~ *.pdb
165 - $(DEL) *.orig
166 - $(DEL) *.rej
167 - $(DEL) *.crlf
168 - $(DEL_TREE) deleted
169 - $(DEL_TREE) obj
170 - $(DEL_TREE) obj-spd
171 - $(DEL_TREE) ..\bin
172 - $(DEL) ..\etc\DOC ..\etc\DOC-X
173 - $(DEL) emacs.bat
174 - $(DEL) debug.bat
175 cd ..\lib-src
176 $(CLEAN_CMD)
177 cd ..\src
178 $(CLEAN_CMD)
179 cd ..\lisp
180 $(CLEAN_CMD)
181 cd ..\nt