(edt-set-term-width-80, edt-set-term-width-132):
[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, 675 Mass Ave, Cambridge, MA 02139, USA. */
19 #
20 # Geoff Voelker (voelker@cs.washington.edu) 11-20-93
21 # 9-6-94
22 !include makefile.def
23
24 ALL = $(BLD)\addpm.exe
25
26 .c{$(BLD)}.obj:
27 $(CC) $(CFLAGS) -Fo$@ $<
28
29 addpm: $(BLD) $(BLD)\addpm.exe
30 $(BLD)\addpm.obj: addpm.c
31 $(BLD)\addpm.exe: $(BLD)\addpm.obj
32 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \
33 $(SYS_LDFLAGS) $** $(BASE_LIBS) user32.lib
34
35 # Since Windows 95 does not support multiple commands on one command line
36 # (e.g., in for loops), we cannot use for loops any more.
37 # SUBDIRS = lib-src src lisp
38
39 #
40 # Build emacs
41 #
42 BUILD_CMD = $(MAKE) -f makefile.nt all
43 all: $(BLD) $(ALL)
44 cd ..\lib-src
45 $(BUILD_CMD)
46 cd ..\src
47 $(BUILD_CMD)
48 cd ..\lisp
49 $(BUILD_CMD)
50 cd ..\nt
51
52
53 emacs.bat: emacs.bat.in
54 echo @echo off > emacs.bat
55 echo REM !!! Warning: This file automatically generated !!! >> emacs.bat
56 echo set emacs_dir=$(INSTALL_DIR)>> emacs.bat
57 type emacs.bat.in >> emacs.bat
58
59 #
60 # Build and install emacs in INSTALL_DIR
61 #
62 INSTALL_CMD = $(MAKE) -f makefile.nt install
63 install: all emacs.bat
64 - mkdir $(INSTALL_DIR)
65 cd ..\lib-src
66 $(INSTALL_CMD)
67 cd ..\src
68 $(INSTALL_CMD)
69 cd ..\lisp
70 $(INSTALL_CMD)
71 cd ..\nt
72 - $(CP) emacs.bat $(INSTALL_DIR)\bin
73 - $(ADDPM) $(INSTALL_DIR)\bin\emacs.bat $(EMACS_ICON_PATH)
74 - del /q ..\same-dir.tst
75 - del /q $(INSTALL_DIR)\same-dir.tst
76 echo SameDirTest > ..\same-dir.tst
77 if not exist $(INSTALL_DIR)\same-dir.tst $(MAKE) -f makefile.nt real_install
78 - del /q ..\same-dir.tst
79 - del /q $(INSTALL_DIR)\same-dir.tst
80
81 #
82 # This installs executables from ..\bin into the installation directory
83 # without building anything.
84 #
85 fast_install:
86 - mkdir $(INSTALL_DIR)\data
87 $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc
88 - mkdir $(INSTALL_DIR)\bin
89 - $(CP) emacs.bat $(INSTALL_DIR)\bin
90 - del /q ..\same-dir.tst
91 - del /q $(INSTALL_DIR)\same-dir.tst
92 echo SameDirTest > ..\same-dir.tst
93 if not exist $(INSTALL_DIR)\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin
94 if not exist $(INSTALL_DIR)\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin
95 if not exist $(INSTALL_DIR)\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin
96 if not exist $(INSTALL_DIR)\same-dir.tst nmake -f $(MAKE) real_install
97 - del /q ..\same-dir.tst
98 - del /q $(INSTALL_DIR)\same-dir.tst
99
100 real_install:
101 - del /q ..\same-dir.tst
102 - del /q $(INSTALL_DIR)\same-dir.tst
103 echo SameDirTest > ..\same-dir.tst
104 - mkdir $(INSTALL_DIR)\etc
105 - mkdir $(INSTALL_DIR)\info
106 - mkdir $(INSTALL_DIR)\lock
107 - mkdir $(INSTALL_DIR)\data
108 if not exist $(INSTALL_DIR)\nt\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc
109 if not exist $(INSTALL_DIR)\nt\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info
110 - del /q ..\same-dir.tst
111 - del /q $(INSTALL_DIR)\same-dir.tst
112
113 #
114 # Maintenance
115 #
116 CLEAN_CMD = $(MAKE) -f makefile.nt clean
117 clean:; - del /q /s *~
118 - $(DEL_TREE) deleted
119 - $(DEL_TREE) obj
120 - $(DEL_TREE) ..\bin
121 cd ..\lib-src
122 $(CLEAN_CMD)
123 cd ..\src
124 $(CLEAN_CMD)
125 cd ..\lisp
126 $(CLEAN_CMD)
127 cd ..\nt