make it easier to update the DLL name

This commit is contained in:
Frank Warmerdam 2004-11-26 20:06:29 +00:00
parent d1e79b2eb1
commit 2d4a8f0f63
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2004-11-26 Frank Warmerdam <warmerdam@pobox.com>
* libtiff/makefile.vc: make it easier to rename the libtiff DLL.
2004-10-24 Andrey Kiselev <dron@remotesensing.org>
* man/libtiff.3tiff: Improvements in the "LIST OF ROUTINES" table as

View File

@ -1,4 +1,4 @@
# $Id: Makefile.vc,v 1.11 2004-11-24 11:24:20 dron Exp $
# $Id: Makefile.vc,v 1.12 2004-11-26 20:06:29 fwarmerdam Exp $
#
# Copyright (C) 2004, Andrey Kiselev <dron@remotesensing.org>
#
@ -76,7 +76,7 @@ OBJ = \
tif_zip.obj \
$(OBJ_SYSDEP_MODULE)
all: libtiff.lib libtiff.dll
all: libtiff.lib $(DLLNAME)
tif_config.h:
copy tif_config.h.vc tif_config.h
@ -87,8 +87,8 @@ tiffconf.h:
libtiff.lib: tif_config.h $(OBJ)
$(AR) /out:libtiff.lib $(OBJ) $(LIBS)
libtiff.dll: tif_config.h $(OBJ)
$(LD) /dll /def:libtiff.def /out:libtiff.dll \
$(DLLNAME): tif_config.h $(OBJ)
$(LD) /debug /dll /def:libtiff.def /out:$(DLLNAME) \
/implib:libtiff_i.lib $(OBJ) $(LIBS)
clean: