|
Last change
on this file was 2, checked in by dmik, 20 years ago |
|
Imported xplatform parts of the official release 3.3.1 from Trolltech
|
|
File size:
986 bytes
|
| Line | |
|---|
| 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
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.