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.sunos

101 lines
2.6 KiB
Plaintext
Raw Normal View History

1997-05-16 07:46:07 +00:00
# makefile for libpng
2006-03-07 13:09:22 +00:00
# Copyright (C) 2002, 2006 Glenn Randers-Pehrson
1997-05-16 07:46:07 +00:00
# Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
#
# This code is released under the libpng license.
# For conditions of distribution and use, see the disclaimer
# and license in png.h
1997-05-16 07:46:07 +00:00
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
1997-05-16 07:46:07 +00:00
# Where the zlib library and include files are located
#ZLIBLIB=/usr/local/lib
#ZLIBINC=/usr/local/include
ZLIBLIB=../zlib
ZLIBINC=../zlib
WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow -Wconversion \
1999-09-17 17:27:26 +00:00
-Wmissing-declarations -Wtraditional -Wcast-align \
-Wstrict-prototypes -Wmissing-prototypes
2006-03-07 13:09:22 +00:00
1997-05-16 07:46:07 +00:00
CC=gcc
2006-03-07 13:09:22 +00:00
AR_RC=ar rc
2006-03-09 05:35:59 +00:00
MKDIR_P=mkdir -p
2006-03-07 13:09:22 +00:00
LN_SF=ln -f -s
RANLIB=ranlib
RM_F=/bin/rm -f
2009-11-25 22:04:13 +00:00
CFLAGS=-I$(ZLIBINC) -O # $(WARNMORE) -DPNG_DEBUG=5
2002-11-01 01:53:20 +00:00
LDFLAGS=-L. -L$(ZLIBLIB) -lpng -lz -lm
1997-05-16 07:46:07 +00:00
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
pngwtran.o pngmem.o pngerror.o pngpread.o
all: libpng.a pngtest
libpng.a: $(OBJS)
2006-03-07 13:09:22 +00:00
$(AR_RC) $@ $(OBJS)
1997-05-16 07:46:07 +00:00
$(RANLIB) $@
pngtest: pngtest.o libpng.a
1998-03-07 20:33:00 +00:00
$(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
1997-05-16 07:46:07 +00:00
test: pngtest
./pngtest
install: libpng.a
2006-03-07 13:09:22 +00:00
-@$(MKDIR_P) $(DESTDIR)$(INCPATH)
-@$(MKDIR_P) $(DESTDIR)$(INCPATH)/libpng
-@$(MKDIR_P) $(DESTDIR)$(LIBPATH)
-@$(RM_F) $(DESTDIR)$(INCPATH)/png.h
-@$(RM_F) $(DESTDIR)$(INCPATH)/pngconf.h
2002-04-27 15:11:25 +00:00
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
2006-03-07 13:09:22 +00:00
(cd $(DESTDIR)$(INCPATH); $(LN_SF) libpng/* .)
2002-04-27 15:11:25 +00:00
cp libpng.a $(DESTDIR)$(LIBPATH)
chmod 644 $(DESTDIR)$(LIBPATH)/libpng.a
1997-05-16 07:46:07 +00:00
clean:
2006-03-07 13:09:22 +00:00
$(RM_F) *.o libpng.a pngtest pngout.png
1997-05-16 07:46:07 +00:00
1999-12-10 15:43:02 +00:00
DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
writelock:
chmod a-w *.[ch35] $(DOCS) scripts/*
1997-05-16 07:46:07 +00:00
# DO NOT DELETE THIS LINE -- make depend depends on it.
png.o: png.h pngconf.h
pngerror.o: png.h pngconf.h
pngrio.o: png.h pngconf.h
pngwio.o: png.h pngconf.h
pngmem.o: png.h pngconf.h
pngset.o: png.h pngconf.h
pngget.o: png.h pngconf.h
pngread.o: png.h pngconf.h
pngrtran.o: png.h pngconf.h
pngrutil.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
pngpread.o: png.h pngconf.h
pngtest.o: png.h pngconf.h