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