Imported Upstream version 1.6.13
[platform/upstream/libpng.git] / scripts / makefile.openbsd
index 443cc5f..64257be 100644 (file)
@@ -1,6 +1,6 @@
 # makefile for libpng
+# Copyright (C) 2007-2009, 2014 Glenn Randers-Pehrson
 # Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
-# Copyright (C) 2007-2009 Glenn Randers-Pehrson
 #
 # This code is released under the libpng license.
 # For conditions of distribution and use, see the disclaimer
@@ -10,25 +10,36 @@ PREFIX?= /usr/local
 LIBDIR=        ${PREFIX}/lib
 MANDIR= ${PREFIX}/man/cat
 
-SHLIB_MAJOR=   0
-SHLIB_MINOR=   1.2.50
+SHLIB_MAJOR=   16
+SHLIB_MINOR=   1.6.13
 
 LIB=   png
 SRCS=  png.c pngerror.c pngget.c pngmem.c pngpread.c \
        pngread.c pngrio.c pngrtran.c pngrutil.c pngset.c pngtrans.c \
        pngwio.c pngwrite.c pngwtran.c pngwutil.c
 
-HDRS=  png.h pngconf.h
+HDRS=  png.h pngconf.h pnglibconf.h
 
 CFLAGS+= -W -Wall
-CPPFLAGS+= -I${.CURDIR} -DPNG_NO_MMX_CODE
+CPPFLAGS+= -I${.CURDIR}
 
 NOPROFILE= Yes
 
-CLEANFILES+= pngtest.o pngtest
+CLEANFILES+= pngtest.o pngtest pnglibconf.h
 
 MAN=   libpng.3 libpngpf.3 png.5
-DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO libpng.txt
+DOCS=  ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO \
+       libpng-manual.txt
+
+# Pre-built configuration
+# See scripts/pnglibconf.mak for more options
+PNGLIBCONF_H_PREBUILT= scripts/pnglibconf.h.prebuilt
+
+.c.o:
+       $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
+
+pnglibconf.h: $(PNGLIBCONF_H_PREBUILT)
+       cp $(PNGLIBCONF_H_PREBUILT) $@
 
 pngtest.o:     pngtest.c
        ${CC} ${CPPFLAGS} ${CFLAGS} -c ${.ALLSRC} -o ${.TARGET}
@@ -65,6 +76,7 @@ afterinstall:
        @rm -f ${DESTDIR}${LIBDIR}/debug/libpng.a
        @rm -f ${DESTDIR}${PREFIX}/include/png.h
        @rm -f ${DESTDIR}${PREFIX}/include/pngconf.h
+       @rm -f ${DESTDIR}${PREFIX}/include/pnglibconf.h
        @rmdir ${DESTDIR}${LIBDIR}/debug 2>/dev/null || true
        ${INSTALL} ${INSTALL_COPY} -o ${SHAREOWN} -g ${SHAREGRP} \
                -m ${NONBINMODE} ${HDRS} ${DESTDIR}${PREFIX}/include