* Terminology change in docs and code.
[make.git] / NMakefile.template
blobdae24f56185aea590653e500c2516baee551fe6a
1 # NOTE: If you have no `make' program at all to process this makefile, run
2 # `build_w32.bat' instead.
4 # Copyright (C) 1988,89,91,92,93,94,95,96,97 Free Software Foundation, Inc.
5 # This file is part of GNU Make.
7 # GNU Make is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
12 # GNU Make is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Make; see the file COPYING.  If not, write to
19 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 # Boston, MA 02111-1307, USA.
23 #       NMakefile for GNU Make
26 LINK = link
27 CC = cl
29 OUTDIR=.
30 MAKEFILE=NMakefile
31 SUBPROC_MAKEFILE=NMakefile
33 CFLAGS_any = /nologo /MT /W3 /GX /Zi /YX /I . /I glob /I w32/include /D WIN32 /D WINDOWS32 /D _CONSOLE /D HAVE_CONFIG_H
34 CFLAGS_debug = $(CFLAGS_any) /Od /D DEBUG /D _DEBUG /FR.\WinDebug/ /Fp.\WinDebug/make.pch /Fo.\WinDebug/ /Fd.\WinDebug/make.pdb
35 CFLAGS_release = $(CFLAGS_any) /O2 /D NDEBUG /FR.\WinRel/ /Fp.\WinRel/make.pch /Fo.\WinRel/
37 LDFLAGS_debug = w32\subproc\WinDebug\subproc.lib /NOLOGO /SUBSYSTEM:console\
38         /INCREMENTAL:no /PDB:WinDebug/make.pdb /MACHINE:I386 \
39         /OUT:WinDebug/make.exe /DEBUG
40 LDFLAGS_release = w32\subproc\WinRel\subproc.lib /NOLOGO /SUBSYSTEM:console\
41         /INCREMENTAL:no /MACHINE:I386 /OUT:WinRel/make.exe
43 all: config.h subproc Release Debug
46 # Make sure we build the subproc library first. It has it's own
47 # makefile. To be portable to Windows 95, we put the instructions
48 # on how to build the library into a batch file. On NT, we could
49 # simply have done foo && bar && dog, but this doesn't port.
51 subproc: w32/subproc/WinDebug/subproc.lib w32/subproc/WinRel/subproc.lib
53 w32/subproc/WinDebug/subproc.lib w32/subproc/WinRel/subproc.lib:
54         subproc.bat $(SUBPROC_MAKEFILE) $(MAKE)
56 config.h: config.h.W32
57         copy $? $@
59 Release:
60         $(MAKE) /f $(MAKEFILE) LDFLAGS="$(LDFLAGS_release)" CFLAGS="$(CFLAGS_release)" OUTDIR=WinRel WinRel/make.exe
61 Debug:
62         $(MAKE) /f $(MAKEFILE) LDFLAGS="$(LDFLAGS_debug)" CFLAGS="$(CFLAGS_debug)" OUTDIR=WinDebug WinDebug/make.exe
64 clean:
65         rmdir /s /q WinDebug WinRel
66         rmdir /s /q w32\subproc\WinDebug w32\subproc\WinRel
67         erase config.h
68         erase *.pdb
70 $(OUTDIR):
71         if not exist .\$@\nul mkdir .\$@
73 LIBS = kernel32.lib user32.lib advapi32.lib
75 OBJS = \
76         $(OUTDIR)/ar.obj \
77         $(OUTDIR)/arscan.obj \
78         $(OUTDIR)/commands.obj \
79         $(OUTDIR)/default.obj \
80         $(OUTDIR)/dir.obj \
81         $(OUTDIR)/expand.obj \
82         $(OUTDIR)/file.obj \
83         $(OUTDIR)/function.obj \
84         $(OUTDIR)/getloadavg.obj \
85         $(OUTDIR)/getopt.obj \
86         $(OUTDIR)/getopt1.obj \
87         $(OUTDIR)/implicit.obj \
88         $(OUTDIR)/job.obj \
89         $(OUTDIR)/main.obj \
90         $(OUTDIR)/misc.obj \
91         $(OUTDIR)/read.obj \
92         $(OUTDIR)/remake.obj \
93         $(OUTDIR)/remote-stub.obj \
94         $(OUTDIR)/rule.obj \
95         $(OUTDIR)/signame.obj \
96         $(OUTDIR)/variable.obj \
97         $(OUTDIR)/version.obj \
98         $(OUTDIR)/vpath.obj \
99         $(OUTDIR)/glob.obj \
100         $(OUTDIR)/fnmatch.obj \
101         $(OUTDIR)/dirent.obj \
102         $(OUTDIR)/pathstuff.obj
104 $(OUTDIR)/make.exe: $(OUTDIR) $(OBJS)
105         $(LINK) @<<
106                 $(LDFLAGS) $(LIBS) $(OBJS)
109 .c{$(OUTDIR)}.obj:
110         $(CC) $(CFLAGS) /c $<
112 $(OUTDIR)/glob.obj : glob/glob.c
113         $(CC) $(CFLAGS) /c $?
114 $(OUTDIR)/fnmatch.obj : glob/fnmatch.c
115         $(CC) $(CFLAGS) /c $?
116 $(OUTDIR)/dirent.obj : w32/compat/dirent.c
117         $(CC) $(CFLAGS) /c $?
118 $(OUTDIR)/pathstuff.obj : w32/pathstuff.c
119         $(CC) $(CFLAGS) /c $?