This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
libpng/scripts/makefile.mips

84 lines
2.2 KiB
Plaintext
Raw Normal View History

1995-07-20 07:43:20 +00:00
# makefile for libpng
2002-04-27 15:11:25 +00:00
# Copyright (C) Glenn Randers-Pehrson
1995-07-20 07:43:20 +00:00
# Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
# For conditions of distribution and use, see copyright notice in png.h
1998-12-29 17:47:59 +00:00
# where make install puts libpng.a and png.h
prefix=/usr/local
2002-04-27 15:11:25 +00:00
INCPATH=$(prefix)/include
LIBPATH=$(prefix)/lib
# override DESTDIR= on the make install command line to easily support
# installing into a temporary location. Example:
#
# make install DESTDIR=/tmp/build/libpng
#
# If you're going to install into a temporary location
2002-05-25 16:12:10 +00:00
# via DESTDIR, $(DESTDIR)$(prefix) must already exist before
2002-04-27 15:11:25 +00:00
# you execute make install.
DESTDIR=
1998-12-29 17:47:59 +00:00
1996-01-26 07:38:47 +00:00
CC=cc
CFLAGS=-I../zlib -O -systype sysv -DSYSV -w -Dmips
#CFLAGS=-O
1995-09-26 10:22:39 +00:00
LDFLAGS=-L. -L../zlib/ -lpng -lz -lm
1995-07-20 07:43:20 +00:00
1996-01-26 07:38:47 +00:00
#RANLIB=ranlib
RANLIB=echo
1995-07-20 07:43:20 +00:00
1997-05-16 07:46:07 +00:00
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
1996-06-05 20:50:50 +00:00
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
pngwtran.o pngmem.o pngerror.o pngpread.o
1995-07-20 07:43:20 +00:00
all: libpng.a pngtest
libpng.a: $(OBJS)
2004-07-18 03:45:44 +00:00
ar rc $@ $(OBJS)
1995-07-20 07:43:20 +00:00
$(RANLIB) $@
pngtest: pngtest.o libpng.a
1998-03-07 20:33:00 +00:00
$(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
1995-09-26 10:22:39 +00:00
test: pngtest
./pngtest
1995-07-20 07:43:20 +00:00
install: libpng.a
2002-04-27 15:11:25 +00:00
-@mkdir $(DESTDIR)$(INCPATH)
-@mkdir $(DESTDIR)$(INCPATH)/libpng
-@mkdir $(DESTDIR)$(LIBPATH)
-@rm -f $(DESTDIR)$(INCPATH)/png.h
-@rm -f $(DESTDIR)$(INCPATH)/pngconf.h
cp png.h $(DESTDIR)$(INCPATH)/libpng
cp pngconf.h $(DESTDIR)$(INCPATH)/libpng
chmod 644 $(DESTDIR)$(INCPATH)/libpng/png.h
chmod 644 $(DESTDIR)$(INCPATH)/libpng/pngconf.h
(cd $(DESTDIR)$(INCPATH); ln -f -s libpng/* .)
cp libpng.a $(DESTDIR)$(LIBPATH)
chmod 644 $(DESTDIR)$(LIBPATH)/libpng.a
1995-07-20 07:43:20 +00:00
clean:
rm -f *.o libpng.a pngtest pngout.png
1999-12-10 15:43:02 +00:00
DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
writelock:
chmod a-w *.[ch35] $(DOCS) scripts/*
1995-07-20 07:43:20 +00:00
# DO NOT DELETE THIS LINE -- make depend depends on it.
1995-09-26 10:22:39 +00:00
png.o: png.h pngconf.h
1995-12-19 09:22:19 +00:00
pngerror.o: png.h pngconf.h
1996-06-05 20:50:50 +00:00
pngrio.o: png.h pngconf.h
pngwio.o: png.h pngconf.h
1995-09-26 10:22:39 +00:00
pngmem.o: png.h pngconf.h
1997-05-16 07:46:07 +00:00
pngset.o: png.h pngconf.h
pngget.o: png.h pngconf.h
1995-09-26 10:22:39 +00:00
pngread.o: png.h pngconf.h
1996-01-26 07:38:47 +00:00
pngpread.o: png.h pngconf.h
1995-09-26 10:22:39 +00:00
pngrtran.o: png.h pngconf.h
pngrutil.o: png.h pngconf.h
pngtest.o: png.h pngconf.h
pngtrans.o: png.h pngconf.h
pngwrite.o: png.h pngconf.h
pngwtran.o: png.h pngconf.h
pngwutil.o: png.h pngconf.h