diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-10-05 13:59:56 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-10-05 13:59:56 +0000 |
commit | 7b3e75da51c72dc4529250beb1906eb2cce0cab1 (patch) | |
tree | 410f346a6dd5b2b717a3064d4b88ae0ed69bda68 /Build/source/libs/libpng/libpng-1.5.5/scripts/smakefile.ppc | |
parent | 24094d5066ab4365b4373f34d4623354993ff148 (diff) |
libpng 1.5.5
git-svn-id: svn://tug.org/texlive/trunk@24209 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/libpng/libpng-1.5.5/scripts/smakefile.ppc')
-rw-r--r-- | Build/source/libs/libpng/libpng-1.5.5/scripts/smakefile.ppc | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Build/source/libs/libpng/libpng-1.5.5/scripts/smakefile.ppc b/Build/source/libs/libpng/libpng-1.5.5/scripts/smakefile.ppc new file mode 100644 index 00000000000..2e7380b1f98 --- /dev/null +++ b/Build/source/libs/libpng/libpng-1.5.5/scripts/smakefile.ppc @@ -0,0 +1,34 @@ +# Amiga powerUP (TM) Makefile +# makefile for libpng and SAS C V6.58/7.00 PPC compiler +# Copyright (C) 1998 by Andreas R. Kleinert +# +# This code is released under the libpng license. +# For conditions of distribution and use, see the disclaimer +# and license in png.h + +CC = scppc +CFLAGS = NOSTKCHK NOSINT OPTIMIZE OPTGO OPTPEEP OPTINLOCAL OPTINL IDIR /zlib \ + OPTLOOP OPTRDEP=8 OPTDEP=8 OPTCOMP=8 +LIBNAME = libpng.a +AR = ppc-amigaos-ar +AR_FLAGS = cr +RANLIB = ppc-amigaos-ranlib +LDFLAGS = -r -o +LDLIBS = ../zlib/libzip.a LIB:scppc.a +LN = ppc-amigaos-ld +RM = delete quiet +MKDIR = makedir + +OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o pngread.o \ + pngerror.o pngpread.o pngwrite.o pngrtran.o pngwtran.o pngrio.o \ + pngwio.o pngmem.o + +all: $(LIBNAME) pngtest + +$(LIBNAME): $(OBJS) + $(AR) $(AR_FLAGS) $@ $(OBJS) + $(RANLIB) $@ + +pngtest: pngtest.o $(LIBNAME) + $(LN) $(LDFLAGS) pngtest LIB:c_ppc.o pngtest.o $(LIBNAME) $(LDLIBS) \ +LIB:end.o |