summaryrefslogtreecommitdiff
path: root/scripts/makefile.ibmc
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2002-10-31 19:53:20 -0600
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2009-04-06 16:07:36 -0500
commit761bf9f06f3c544e6fb6ed46f3b08a363cf19b81 (patch)
treee848ffcde9e499aa1c6e1fc65a62ae84041e68fb /scripts/makefile.ibmc
parentc33ab4e8dfeb665b5670da0bae9abe3fa05ba92d (diff)
downloadlibpng-761bf9f06f3c544e6fb6ed46f3b08a363cf19b81.tar.gz
Imported from libpng-1.2.6beta2.tarv1.2.6beta2
Diffstat (limited to 'scripts/makefile.ibmc')
-rw-r--r--scripts/makefile.ibmc3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/makefile.ibmc b/scripts/makefile.ibmc
index f09a62c9e..1a6030f98 100644
--- a/scripts/makefile.ibmc
+++ b/scripts/makefile.ibmc
@@ -16,6 +16,7 @@ ZLIBLIB = ../zlib
CC = icc
LD = ilink
AR = ilib
+ARFLAGS=
RM = del
CFLAGS = -I$(ZLIBINC) -Mc -O2 -W3
@@ -37,7 +38,7 @@ LIBS = libpng$(A) $(ZLIBLIB)/zlib$(A)
all: libpng$(A) pngtest$(E)
libpng$(A): $(OBJS)
- $(AR) -out:$@ $(OBJS)
+ $(AR) $(ARFLAGS) -out:$@ $(OBJS)
test: pngtest$(E)
pngtest$(E)