(add-log-tcl-defun): Don't use tcl-beginning-of-defun; just go to end
[emacs.git] / nt / makefile.nt
bloba3bf3b47eb16e5d95b87996a0f2b5036bbc2630b
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, 675 Mass Ave, Cambridge, MA 02139, USA.  */
20 #   Geoff Voelker (voelker@cs.washington.edu)   11-20-93
21 #                                                 9-6-94
22 !include makefile.def
24 ALL             = $(BLD)\addpm.exe
26 .c{$(BLD)}.obj:
27                   $(CC) $(CFLAGS) -Fo$@ $<
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) $(ADVAPI32) user32.lib
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
40 # Build emacs
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
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
60 # Build and install emacs in INSTALL_DIR
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)
74                 - del ..\same-dir.tst
75                 - del $(INSTALL_DIR)\same-dir.tst
76                 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
77                 if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install
78                 - del ..\same-dir.tst
79                 - del $(INSTALL_DIR)\same-dir.tst
82 # This installs executables from ..\bin into the installation directory
83 # without building anything.
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 ..\same-dir.tst
91                 - del $(INSTALL_DIR)\same-dir.tst
92                 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
93                 if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin
94                 if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin
95                 if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin
96                 if not exist ..\same-dir.tst nmake -f $(MAKE) real_install
97                 - del ..\same-dir.tst
98                 - del $(INSTALL_DIR)\same-dir.tst
100 real_install:
101                 - del ..\same-dir.tst
102                 - del $(INSTALL_DIR)\same-dir.tst
103                 echo SameDirTest > $(INSTALL_DIR)\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 ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc
109                 if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info
110                 - del ..\same-dir.tst
111                 - del $(INSTALL_DIR)\same-dir.tst
114 # Maintenance
116 CLEAN_CMD       = $(MAKE) -f makefile.nt clean
117 clean:;         - del /s *~ *.pdb
118                 - $(DEL_TREE) deleted
119                 - $(DEL_TREE) obj
120                 - $(DEL_TREE) ..\bin
121                 - del ..\etc\DOC
122                 - del ..\etc\DOC-X
123                 - del emacs.bat
124                 cd ..\lib-src
125                 $(CLEAN_CMD)
126                 cd ..\src
127                 $(CLEAN_CMD)
128                 cd ..\lisp
129                 $(CLEAN_CMD)
130                 cd ..\nt