annotate nt/makefile.nt @ 16827:6f4bc15744a4

(real_install): Create site-lisp in installation dir.
author Geoff Voelker <voelker@cs.washington.edu>
date Sun, 05 Jan 1997 02:14:28 +0000
parents 2752419e5aa2
children 7ef1d548462a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
1 #
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
2 # Top level makefile for building GNU Emacs on Windows NT
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
3 #
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
4 # This file is part of GNU Emacs.
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
5 #
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
6 # GNU Emacs is free software; you can redistribute it and/or modify
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
7 # it under the terms of the GNU General Public License as published by
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
8 # the Free Software Foundation; either version 2, or (at your option)
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
9 # any later version.
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
10 #
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
11 # GNU Emacs is distributed in the hope that it will be useful,
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
14 # GNU General Public License for more details.
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
15 #
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
16 # You should have received a copy of the GNU General Public License
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
17 # along with GNU Emacs; see the file COPYING. If not, write to
14185
aba3b91c8b3d Update FSF's ddress in preamble
Erik Naggum <erik@naggum.no>
parents: 13630
diff changeset
18 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
aba3b91c8b3d Update FSF's ddress in preamble
Erik Naggum <erik@naggum.no>
parents: 13630
diff changeset
19 # Boston, MA 02111-1307, USA.
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
20 #
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
21 # Geoff Voelker (voelker@cs.washington.edu) 11-20-93
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
22 # 9-6-94
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
23 !include makefile.def
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
24
15133
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
25 ALL = $(BLD)\addpm.exe $(BLD)\runemacs.exe
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
26 !if $(MSVCNT11)
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
27 TRES = $(BLD)\emacs.res
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
28 !else
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
29 TRES = $(BLD)\emacs.rbj
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
30 !endif
12179
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
31
12236
791ee9839187 Define .c to .obj suffix rule.
Richard M. Stallman <rms@gnu.org>
parents: 12217
diff changeset
32 .c{$(BLD)}.obj:
791ee9839187 Define .c to .obj suffix rule.
Richard M. Stallman <rms@gnu.org>
parents: 12217
diff changeset
33 $(CC) $(CFLAGS) -Fo$@ $<
791ee9839187 Define .c to .obj suffix rule.
Richard M. Stallman <rms@gnu.org>
parents: 12217
diff changeset
34
12179
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
35 addpm: $(BLD) $(BLD)\addpm.exe
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
36 $(BLD)\addpm.obj: addpm.c
12236
791ee9839187 Define .c to .obj suffix rule.
Richard M. Stallman <rms@gnu.org>
parents: 12217
diff changeset
37 $(BLD)\addpm.exe: $(BLD)\addpm.obj
12322
5b3931c846b1 (addpm.exe): Change WinMainCRTStartup to mainCRTStartup.
Richard M. Stallman <rms@gnu.org>
parents: 12236
diff changeset
38 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \
13435
02308cb19c55 (addpm.exe): Link with $(ADVAPI32).
Geoff Voelker <voelker@cs.washington.edu>
parents: 12322
diff changeset
39 $(SYS_LDFLAGS) $** $(BASE_LIBS) $(ADVAPI32) user32.lib
12179
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
40
15133
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
41 #
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
42 # The resource file. NT 3.10 requires the use of cvtres; even though
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
43 # it is not necessary on later versions, it is still ok to use it.
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
44 #
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
45 $(TRES): emacs.rc
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
46 $(RC) -Fo$(BLD)\emacs.res $**
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
47 !if !$(MSVCNT11)
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
48 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
49 !endif
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
50
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
51 runemacs: $(BLD) $(BLD)\runemacs.exe
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
52 $(BLD)\runemacs.obj: runemacs.c
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
53 $(BLD)\runemacs.exe: $(BLD)\runemacs.obj $(TRES)
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
54 $(LINK) -out:$@ -subsystem:windows -entry:WinMainCRTStartup \
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
55 $(SYS_LDFLAGS) $** $(BASE_LIBS) $(ADVAPI32) user32.lib
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
56
11938
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
57 # Since Windows 95 does not support multiple commands on one command line
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
58 # (e.g., in for loops), we cannot use for loops any more.
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
59 # SUBDIRS = lib-src src lisp
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
60
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
61 #
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
62 # Build emacs
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
63 #
11938
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
64 BUILD_CMD = $(MAKE) -f makefile.nt all
12179
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
65 all: $(BLD) $(ALL)
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
66 cd ..\lib-src
11938
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
67 $(BUILD_CMD)
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
68 cd ..\src
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
69 $(BUILD_CMD)
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
70 cd ..\lisp
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
71 $(BUILD_CMD)
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
72 cd ..\nt
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
73
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
74
12179
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
75 emacs.bat: emacs.bat.in
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
76 echo @echo off > emacs.bat
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
77 echo REM !!! Warning: This file automatically generated !!! >> emacs.bat
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
78 echo set emacs_dir=$(INSTALL_DIR)>> emacs.bat
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
79 type emacs.bat.in >> emacs.bat
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
80
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
81 #
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
82 # Build and install emacs in INSTALL_DIR
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
83 #
11938
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
84 INSTALL_CMD = $(MAKE) -f makefile.nt install
12179
3b0a6bb0ca8c (ALL,addpm,addpm.exe,addpm.obj): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11938
diff changeset
85 install: all emacs.bat
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
86 - mkdir $(INSTALL_DIR)
11938
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
87 cd ..\lib-src
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
88 $(INSTALL_CMD)
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
89 cd ..\src
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
90 $(INSTALL_CMD)
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
91 cd ..\lisp
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
92 $(INSTALL_CMD)
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
93 cd ..\nt
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
94 - $(CP) emacs.bat $(INSTALL_DIR)\bin
15133
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
95 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
96 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
13435
02308cb19c55 (addpm.exe): Link with $(ADVAPI32).
Geoff Voelker <voelker@cs.washington.edu>
parents: 12322
diff changeset
97 - $(ADDPM) $(INSTALL_DIR)
14899
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
98 - $(DEL) ..\same-dir.tst
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
99 - $(DEL) $(INSTALL_DIR)\same-dir.tst
13435
02308cb19c55 (addpm.exe): Link with $(ADVAPI32).
Geoff Voelker <voelker@cs.washington.edu>
parents: 12322
diff changeset
100 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
02308cb19c55 (addpm.exe): Link with $(ADVAPI32).
Geoff Voelker <voelker@cs.washington.edu>
parents: 12322
diff changeset
101 if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install
14899
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
102 - $(DEL) ..\same-dir.tst
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
103 - $(DEL) $(INSTALL_DIR)\same-dir.tst
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
104
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
105 #
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
106 # This installs executables from ..\bin into the installation directory
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
107 # without building anything.
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
108 #
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
109 fast_install:
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
110 - mkdir $(INSTALL_DIR)\data
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
111 $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
112 - mkdir $(INSTALL_DIR)\bin
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
113 - $(CP) emacs.bat $(INSTALL_DIR)\bin
15133
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
114 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
dddda397bca0 Build and install runemacs.exe.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14899
diff changeset
115 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
14899
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
116 - $(DEL) ..\same-dir.tst
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
117 - $(DEL) $(INSTALL_DIR)\same-dir.tst
13435
02308cb19c55 (addpm.exe): Link with $(ADVAPI32).
Geoff Voelker <voelker@cs.washington.edu>
parents: 12322
diff changeset
118 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
02308cb19c55 (addpm.exe): Link with $(ADVAPI32).
Geoff Voelker <voelker@cs.washington.edu>
parents: 12322
diff changeset
119 if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin
02308cb19c55 (addpm.exe): Link with $(ADVAPI32).
Geoff Voelker <voelker@cs.washington.edu>
parents: 12322
diff changeset
120 if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin
02308cb19c55 (addpm.exe): Link with $(ADVAPI32).
Geoff Voelker <voelker@cs.washington.edu>
parents: 12322
diff changeset
121 if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin
02308cb19c55 (addpm.exe): Link with $(ADVAPI32).
Geoff Voelker <voelker@cs.washington.edu>
parents: 12322
diff changeset
122 if not exist ..\same-dir.tst nmake -f $(MAKE) real_install
14899
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
123 - $(DEL) ..\same-dir.tst
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
124 - $(DEL) $(INSTALL_DIR)\same-dir.tst
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
125
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
126 real_install:
14899
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
127 - $(DEL) ..\same-dir.tst
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
128 - $(DEL) $(INSTALL_DIR)\same-dir.tst
13435
02308cb19c55 (addpm.exe): Link with $(ADVAPI32).
Geoff Voelker <voelker@cs.washington.edu>
parents: 12322
diff changeset
129 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
130 - mkdir $(INSTALL_DIR)\etc
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
131 - mkdir $(INSTALL_DIR)\info
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
132 - mkdir $(INSTALL_DIR)\lock
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
133 - mkdir $(INSTALL_DIR)\data
16827
6f4bc15744a4 (real_install): Create site-lisp in installation dir.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15722
diff changeset
134 - mkdir $(INSTALL_DIR)\site-lisp
13435
02308cb19c55 (addpm.exe): Link with $(ADVAPI32).
Geoff Voelker <voelker@cs.washington.edu>
parents: 12322
diff changeset
135 if not exist ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc
02308cb19c55 (addpm.exe): Link with $(ADVAPI32).
Geoff Voelker <voelker@cs.washington.edu>
parents: 12322
diff changeset
136 if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info
14899
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
137 - $(DEL) ..\same-dir.tst
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
138 - $(DEL) $(INSTALL_DIR)\same-dir.tst
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
139
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
140 #
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
141 # Maintenance
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
142 #
11938
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
143 CLEAN_CMD = $(MAKE) -f makefile.nt clean
14899
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
144 clean:; - $(DEL) *~ *.pdb
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
145 - $(DEL_TREE) deleted
15722
2752419e5aa2 (clean): Use OBJDIR macro.
Karl Heuer <kwzh@gnu.org>
parents: 15133
diff changeset
146 - $(DEL_TREE) $(OBJDIR)
11766
1877e9736ea1 removed ^Ms
Geoff Voelker <voelker@cs.washington.edu>
parents: 11401
diff changeset
147 - $(DEL_TREE) ..\bin
14899
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
148 - $(DEL) ..\etc\DOC ..\etc\DOC-X
4b7b8a937a5d Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents: 14185
diff changeset
149 - $(DEL) emacs.bat
11938
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
150 cd ..\lib-src
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
151 $(CLEAN_CMD)
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
152 cd ..\src
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
153 $(CLEAN_CMD)
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
154 cd ..\lisp
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
155 $(CLEAN_CMD)
cc1b306581c5 Commented out.
Geoff Voelker <voelker@cs.washington.edu>
parents: 11766
diff changeset
156 cd ..\nt