Blame Makefile.vc

Packit 85355f
# $Id: Makefile.vc,v 1.7 2008/01/01 15:53:10 fwarmerdam Exp $
Packit 85355f
#
Packit 85355f
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
Packit 85355f
#
Packit 85355f
# Permission to use, copy, modify, distribute, and sell this software and 
Packit 85355f
# its documentation for any purpose is hereby granted without fee, provided
Packit 85355f
# that (i) the above copyright notices and this permission notice appear in
Packit 85355f
# all copies of the software and related documentation, and (ii) the names of
Packit 85355f
# Sam Leffler and Silicon Graphics may not be used in any advertising or
Packit 85355f
# publicity relating to the software without the specific, prior written
Packit 85355f
# permission of Sam Leffler and Silicon Graphics.
Packit 85355f
# 
Packit 85355f
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
Packit 85355f
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
Packit 85355f
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
Packit 85355f
# 
Packit 85355f
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
Packit 85355f
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
Packit 85355f
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
Packit 85355f
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
Packit 85355f
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
Packit 85355f
# OF THIS SOFTWARE.
Packit 85355f
#
Packit 85355f
# Makefile for MS Visual C and Watcom C compilers.
Packit 85355f
# Edit nmake.opt file if you want to ajust building options.
Packit 85355f
#
Packit 85355f
# To build:
Packit 85355f
# C:\libtiff> nmake /f makefile.vc 
Packit 85355f
Packit 85355f
!INCLUDE nmake.opt
Packit 85355f
Packit 85355f
all:	port lib tools
Packit 85355f
Packit 85355f
port::
Packit 85355f
	cd port
Packit 85355f
	$(MAKE) /f Makefile.vc
Packit 85355f
	cd..
Packit 85355f
Packit 85355f
lib:	port
Packit 85355f
	cd libtiff
Packit 85355f
	$(MAKE) /f Makefile.vc
Packit 85355f
	cd..
Packit 85355f
Packit 85355f
tools:	lib
Packit 85355f
	cd tools
Packit 85355f
	$(MAKE) /f Makefile.vc
Packit 85355f
	cd ..
Packit 85355f
Packit 85355f
clean:
Packit 85355f
	cd port
Packit 85355f
	$(MAKE) /f Makefile.vc clean
Packit 85355f
	cd..
Packit 85355f
	cd libtiff
Packit 85355f
	$(MAKE) /f Makefile.vc clean
Packit 85355f
	cd..
Packit 85355f
	cd tools
Packit 85355f
	$(MAKE) /f Makefile.vc clean
Packit 85355f
	cd ..