libpng/scripts/makefile.knr

117 lines
4.0 KiB
Plaintext
Raw Normal View History

1995-07-20 03:43:20 -04:00
# makefile for libpng
# Copyright (C) 2002, 2006, 2009, 2014 Glenn Randers-Pehrson
1995-07-20 03:43:20 -04: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
#
1999-10-14 08:43:10 -04:00
# This makefile requires the file ansi2knr.c, which you can get
1999-09-17 13:27:26 -04:00
# from the Ghostscript ftp site at ftp://ftp.cs.wisc.edu/ghost/
# If you have libjpeg, you probably already have ansi2knr.c in the jpeg
# source distribution.
1998-12-29 12:47:59 -05:00
# where make install puts libpng.a and png.h
prefix=/usr/local
2002-04-27 11:11:25 -04: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 12:12:10 -04:00
# via DESTDIR, $(DESTDIR)$(prefix) must already exist before
2002-04-27 11:11:25 -04:00
# you execute make install.
DESTDIR=
1998-12-29 12:47:59 -05:00
CC = cc
CPPFLAGS = -I../zlib
CFLAGS = -O
LDFLAGS = -L. -L../zlib/ -lpng -lz -lm
1996-01-26 02:38:47 -05:00
# flags for ansi2knr
ANSI2KNRFLAGS=
1995-07-20 03:43:20 -04:00
RANLIB = ranlib
#RANLIB = echo
1995-07-20 03:43:20 -04:00
CP = cp
RM_F = rm -f
# Pre-built configuration
# See scripts/pnglibconf.mak for more options
PNGLIBCONF_H_PREBUILT = scripts/pnglibconf.h.prebuilt
1997-05-16 03:46:07 -04:00
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
1996-06-05 16:50:50 -04:00
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
pngwtran.o pngmem.o pngerror.o pngpread.o
1995-07-20 03:43:20 -04:00
all: ansi2knr libpng.a pngtest
1995-07-20 03:43:20 -04:00
pnglibconf.h: $(PNGLIBCONF_H_PREBUILT)
$(CP) $(PNGLIBCONF_H_PREBUILT) $@
1996-01-26 02:38:47 -05:00
# general rule to allow ansi2knr to work
.c.o:
./ansi2knr $*.c T$*.c
$(CC) $(CPPFLAGS) $(CFLAGS) -c T$*.c
1996-01-26 02:38:47 -05:00
rm -f T$*.c $*.o
mv T$*.o $*.o
ansi2knr: ansi2knr.c
$(CC) $(CPPFLAGS) $(CFLAGS) $(ANSI2KNRFLAGS) -o ansi2knr ansi2knr.c
1996-01-26 02:38:47 -05:00
libpng.a: ansi2knr $(OBJS)
2004-07-17 23:45:44 -04:00
ar rc $@ $(OBJS)
1995-07-20 03:43:20 -04:00
$(RANLIB) $@
1998-03-07 15:33:00 -05:00
pngtest: pngtest.o libpng.a
$(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
1995-09-26 06:22:39 -04:00
test: pngtest
./pngtest
1995-07-20 03:43:20 -04:00
install: libpng.a png.h pngconf.h pnglibconf.h
2002-04-27 11:11:25 -04: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
cp pnglibconf.h $(DESTDIR)$(INCPATH)/libpng
2002-04-27 11:11:25 -04:00
chmod 644 $(DESTDIR)$(INCPATH)/libpng/png.h
chmod 644 $(DESTDIR)$(INCPATH)/libpng/pngconf.h
chmod 644 $(DESTDIR)$(INCPATH)/libpng/pnglibconf.h
2002-04-27 11:11:25 -04:00
(cd $(DESTDIR)$(INCPATH); ln -f -s libpng/* .)
cp libpng.a $(DESTDIR)$(LIBPATH)
chmod 644 $(DESTDIR)$(LIBPATH)/libpng.a
1995-07-20 03:43:20 -04:00
clean:
$(RM_F) *.o libpng.a pngtest pngout.png ansi2knr pnglibconf.h
1995-07-20 03:43:20 -04:00
1999-12-10 10:43:02 -05:00
DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
writelock:
chmod a-w *.[ch35] $(DOCS) scripts/*
1995-07-20 03:43:20 -04:00
# DO NOT DELETE THIS LINE -- make depend depends on it.
png.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngerror.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngrio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngwio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngmem.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngset.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngget.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngpread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngrtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngrutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngtrans.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngwrite.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngwtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngwutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
pngtest.o: png.h pngconf.h pnglibconf.h