Mercurial > fife-parpg
comparison ext/libpng-1.2.29/scripts/smakefile.ppc @ 0:4a0efb7baf70
* Datasets becomes the new trunk and retires after that :-)
author | mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Sun, 29 Jun 2008 18:44:17 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4a0efb7baf70 |
---|---|
1 # Amiga powerUP (TM) Makefile | |
2 # makefile for libpng and SAS C V6.58/7.00 PPC compiler | |
3 # Copyright (C) 1998 by Andreas R. Kleinert | |
4 # For conditions of distribution and use, see copyright notice in png.h | |
5 | |
6 CC = scppc | |
7 CFLAGS = NOSTKCHK NOSINT OPTIMIZE OPTGO OPTPEEP OPTINLOCAL OPTINL IDIR /zlib \ | |
8 OPTLOOP OPTRDEP=8 OPTDEP=8 OPTCOMP=8 | |
9 LIBNAME = libpng.a | |
10 AR = ppc-amigaos-ar | |
11 AR_FLAGS = cr | |
12 RANLIB = ppc-amigaos-ranlib | |
13 LDFLAGS = -r -o | |
14 LDLIBS = ../zlib/libzip.a LIB:scppc.a | |
15 LN = ppc-amigaos-ld | |
16 RM = delete quiet | |
17 MKDIR = makedir | |
18 | |
19 OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o pngread.o \ | |
20 pngerror.o pngpread.o pngwrite.o pngrtran.o pngwtran.o pngrio.o pngwio.o pngmem.o | |
21 | |
22 all: $(LIBNAME) pngtest | |
23 | |
24 $(LIBNAME): $(OBJS) | |
25 $(AR) $(AR_FLAGS) $@ $(OBJS) | |
26 $(RANLIB) $@ | |
27 | |
28 pngtest: pngtest.o $(LIBNAME) | |
29 $(LN) $(LDFLAGS) pngtest LIB:c_ppc.o pngtest.o $(LIBNAME) $(LDLIBS) \ | |
30 LIB:end.o |