Blame port/Makefile.vc

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