Few minor improvements.

This commit is contained in:
Andrey Kiselev 2004-07-03 16:01:29 +00:00
parent a9a325f626
commit aa92ea59f3
3 changed files with 10 additions and 9 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile.vc,v 1.6 2004-06-06 17:58:04 dron Exp $
# $Id: Makefile.vc,v 1.7 2004-07-03 16:03:04 dron Exp $
#
# Copyright (C) 2004, Andrey Kiselev <dron@remotesensing.org>
#
@ -30,7 +30,6 @@
!INCLUDE ..\nmake.opt
INCL = -I. $(JPEG_INCLUDE) $(ZLIB_INCLUDE)
LIBS = $(LIBS) ..\port\libport.lib
OBJ = \
tif_aux.obj \
@ -76,10 +75,10 @@ config.h:
copy config.h.vc config.h
libtiff.lib: config.h $(OBJ)
lib /nologo /out:libtiff.lib $(OBJ) $(LIBS)
$(AR) /out:libtiff.lib $(OBJ) $(LIBS)
libtiff.dll: config.h $(OBJ)
link /nologo /dll /def:libtiff.def /out:libtiff.dll \
$(LD) /dll /def:libtiff.def /out:libtiff.dll \
/implib:libtiff_i.lib $(OBJ) $(LIBS)
clean:

View File

@ -1,4 +1,4 @@
# $Id: nmake.opt,v 1.4 2004-05-19 10:49:33 dron Exp $
# $Id: nmake.opt,v 1.5 2004-07-03 16:01:29 dron Exp $
#
# Copyright (C) 2004, Andrey Kiselev <dron@remotesensing.org>
#
@ -103,10 +103,12 @@ CHECK_JPEG_YCBCR_SUBSAMPLING = 1
MAKE = nmake /nologo
CC = cl /nologo
AR = lib /nologo
LD = link /nologo
CFLAGS = /W3 $(INCL) $(WINMODE) $(EXTRAFLAGS)
CFLAGS = /W3 $(INCL) $(WINMODE) $(EXTRAFLAGS)
EXTRAFLAGS =
LIBS =
LIBS =
# Set the native cpu bit order
EXTRAFLAGS = -DFILLODER_LSB2MSB $(EXTRAFLAGS)

View File

@ -1,4 +1,4 @@
# $Id: Makefile.vc,v 1.1 2004-06-06 17:57:08 dron Exp $
# $Id: Makefile.vc,v 1.2 2004-07-03 16:04:59 dron Exp $
#
# Copyright (C) 2004, Andrey Kiselev <dron@remotesensing.org>
#
@ -35,7 +35,7 @@ OBJ = \
all: libport.lib
libport.lib: $(OBJ)
lib /nologo /out:libport.lib $(OBJ)
$(AR) /out:libport.lib $(OBJ)
clean:
-del *.obj *.lib