Simplify copyrights using ranges of years.
[make.git] / w32 / subproc / NMakefile
blobdc025a5a2f48be928a2953d51b98af47a6f7d3e5
1 # NOTE: If you have no 'make' program at all to process this makefile, run
2 # 'build.bat' instead.
4 # Copyright (C) 1996-2012 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 it under
8 # the terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
12 # GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15 # details.
17 # You should have received a copy of the GNU General Public License along with
18 # this program.  If not, see <http://www.gnu.org/licenses/>.
21 #       NMakefile for GNU Make (subproc library)
23 LIB = lib
24 CC = cl
25 MAKE = nmake
27 OUTDIR=.
28 MAKEFILE=NMakefile
30 CFLAGS_any = /nologo /MT /W4 /GX /Z7 /YX /D WIN32 /D WINDOWS32 /D _WINDOWS  -I. -I../include -I../../
31 CFLAGS_debug = $(CFLAGS_any) /Od /D _DEBUG /FR.\WinDebug\ /Fp.\WinDebug\subproc.pch /Fo.\WinDebug/
32 CFLAGS_release = $(CFLAGS_any) /O2 /FR.\WinRel\ /Fp.\WinRel\subproc.pch /Fo.\WinRel/
34 all: Release Debug
36 Release:
37         $(MAKE) /f $(MAKEFILE) OUTDIR=WinRel CFLAGS="$(CFLAGS_release)" WinRel/subproc.lib
38 Debug:
39         $(MAKE) /f $(MAKEFILE) OUTDIR=WinDebug CFLAGS="$(CFLAGS_debug)" WinDebug/subproc.lib
41 clean:
42         rmdir /s /q WinRel WinDebug
43         erase *.pdb
45 $(OUTDIR):
46         if not exist .\$@\nul mkdir .\$@
48 OBJS = $(OUTDIR)/misc.obj $(OUTDIR)/w32err.obj $(OUTDIR)/sub_proc.obj
50 $(OUTDIR)/subproc.lib: $(OUTDIR) $(OBJS)
51         $(LIB) -out:$@ @<<
52                 $(OBJS)
55 .c{$(OUTDIR)}.obj:
56         $(CC) $(CFLAGS) /c $<
58 $(OUTDIR)/misc.obj: misc.c proc.h
59 $(OUTDIR)/sub_proc.obj: sub_proc.c  ../include/sub_proc.h ../include/w32err.h proc.h
60 $(OUTDIR)/w32err.obj: w32err.c ../include/w32err.h