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

117 lines
3.0 KiB
Plaintext
Raw Normal View History

2000-11-23 17:51:42 +00:00
# makefile for libpng using gcc (generic, static library)
# Copyright (C) 2002, 2006-2009 Glenn Randers-Pehrson
2000-11-23 17:51:42 +00:00
# Copyright (C) 2000 Cosmin Truta
# Copyright (C) 2000 Marc O. Gloor (AIX support added, from makefile.gcc)
2002-04-27 15:11:25 +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
2000-11-23 17:51:42 +00:00
# Location of the zlib library and include files
ZLIBINC = ../zlib
ZLIBLIB = ../zlib
# Compiler, linker, lib and other tools
CC = gcc
LD = $(CC)
2006-03-07 13:09:22 +00:00
AR_RC = ar rcs
2006-03-10 16:19:04 +00:00
MKDIR_P = mkdir -p
2000-11-23 17:51:42 +00:00
RANLIB = ranlib
2006-03-07 13:09:22 +00:00
RM_F = rm -f
LN_SF = ln -f -s
2000-11-23 17:51:42 +00:00
2002-10-03 11:32:37 +00:00
LIBNAME=libpng12
2002-02-22 05:14:23 +00:00
PNGMAJ = 0
PNGMIN = 1.2.59
2000-11-23 17:51:42 +00:00
PNGVER = $(PNGMAJ).$(PNGMIN)
prefix=/usr/local
INCPATH=$(prefix)/include
LIBPATH=$(prefix)/lib
2002-04-27 15:11:25 +00:00
# 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=
2002-10-22 13:28:43 +00:00
DI=$(DESTDIR)$(INCPATH)
DL=$(DESTDIR)$(LIBPATH)
2002-05-21 23:06:08 +00:00
2000-11-23 17:51:42 +00:00
CDEBUG = -g -DPNG_DEBUG=5
LDDEBUG =
CRELEASE = -O2
LDRELEASE = -s
2008-08-02 17:21:03 +00:00
WARNMORE=-W -Wall
CFLAGS = -D_ALL_SOURCE -I$(ZLIBINC) $(WARNMORE) $(CRELEASE)
2002-10-22 13:28:43 +00:00
LDFLAGS = -L. -L$(ZLIBLIB) -lpng12 -lz -lm $(LDRELEASE)
2000-11-23 17:51:42 +00:00
# File extensions
O=.o
A=.a
E=
# Variables
OBJS = png$(O) pngerror$(O) pngget$(O) pngmem$(O) pngpread$(O) \
2000-11-23 17:51:42 +00:00
pngread$(O) pngrio$(O) pngrtran$(O) pngrutil$(O) pngset$(O) \
pngtrans$(O) pngwio$(O) pngwrite$(O) pngwtran$(O) pngwutil$(O)
# Targets
2002-10-22 13:28:43 +00:00
all: $(LIBNAME)$(A) pngtest$(E)
2000-11-23 17:51:42 +00:00
2002-10-03 11:32:37 +00:00
$(LIBNAME)$(A): $(OBJS)
2006-03-07 13:09:22 +00:00
$(AR_RC) $@ $(OBJS)
2000-11-23 17:51:42 +00:00
$(RANLIB) $@
test: pngtest$(E)
./pngtest$(E)
2002-10-03 11:32:37 +00:00
pngtest$(E): pngtest$(O) $(LIBNAME)$(A)
2000-11-23 17:51:42 +00:00
$(LD) -o $@ pngtest$(O) $(LDFLAGS)
2002-10-03 11:32:37 +00:00
install: $(LIBNAME)$(A)
2006-03-09 05:35:59 +00:00
-@if [ ! -d $(DI) ]; then $(MKDIR_P) $(DI); fi
-@if [ ! -d $(DI)/$(LIBNAME) ]; then $(MKDIR_P) $(DI)/$(LIBNAME); fi
-@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
2006-03-07 13:09:22 +00:00
-@$(RM_F) $(DI)/$(LIBNAME)/png.h
-@$(RM_F) $(DI)/$(LIBNAME)/pngconf.h
-@$(RM_F) $(DI)/png.h
-@$(RM_F) $(DI)/pngconf.h
2002-10-22 13:28:43 +00:00
cp png.h pngconf.h $(DI)/$(LIBNAME)
chmod 644 $(DI)/$(LIBNAME)/png.h \
$(DI)/$(LIBNAME)/pngconf.h
2006-03-07 13:09:22 +00:00
-@$(RM_F) -r $(DI)/libpng
(cd $(DI); $(LN_SF) $(LIBNAME) libpng; $(LN_SF) $(LIBNAME)/* .)
-@$(RM_F) $(DL)/$(LIBNAME)$(A)
-@$(RM_F) $(DL)/libpng$(A)
2002-10-22 13:28:43 +00:00
cp $(LIBNAME)$(A) $(DL)/$(LIBNAME)$(A)
chmod 644 $(DL)/$(LIBNAME)$(A)
2006-03-07 13:09:22 +00:00
(cd $(DL); $(LN_SF) $(LIBNAME)$(A) libpng$(A))
(cd $(DI); $(LN_SF) libpng/* .;)
2000-11-23 17:51:42 +00:00
clean:
2006-03-07 13:09:22 +00:00
$(RM_F) *.o $(LIBNAME)$(A) pngtest pngout.png
2000-11-23 17:51:42 +00:00
png$(O): png.h pngconf.h
2000-11-23 17:51:42 +00:00
pngerror$(O): png.h pngconf.h
pngget$(O): png.h pngconf.h
pngmem$(O): png.h pngconf.h
2000-11-23 17:51:42 +00:00
pngpread$(O): png.h pngconf.h
pngread$(O): png.h pngconf.h
pngrio$(O): png.h pngconf.h
2000-11-23 17:51:42 +00:00
pngrtran$(O): png.h pngconf.h
pngrutil$(O): png.h pngconf.h
pngset$(O): png.h pngconf.h
2000-11-23 17:51:42 +00:00
pngtrans$(O): png.h pngconf.h
pngwio$(O): png.h pngconf.h
2000-11-23 17:51:42 +00:00
pngwrite$(O): png.h pngconf.h
pngwtran$(O): png.h pngconf.h
pngwutil$(O): png.h pngconf.h
pngtest$(O): png.h pngconf.h