makefile.aix 4.1 KB
Newer Older
1
# makefile for libpng using gcc (generic, static library)
2
# Copyright (C) 2002, 2006-2009 Glenn Randers-Pehrson
3 4
# Copyright (C) 2000 Cosmin Truta
# Copyright (C) 2000 Marc O. Gloor (AIX support added, from makefile.gcc)
5
# Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
6
#
7
# This code is released under the libpng license.
8
# For conditions of distribution and use, see the disclaimer
9
# and license in png.h
10 11 12 13 14 15 16 17

# Location of the zlib library and include files
ZLIBINC = ../zlib
ZLIBLIB = ../zlib

# Compiler, linker, lib and other tools
CC = gcc
LD = $(CC)
18
AR_RC = ar rcs
19
MKDIR_P = mkdir -p
20
RANLIB = ranlib
21 22
RM_F = rm -f
LN_SF = ln -f -s
23

24 25
LIBNAME=libpng16
PNGMAJ = 16
26 27 28 29 30

prefix=/usr/local
INCPATH=$(prefix)/include
LIBPATH=$(prefix)/lib

31 32 33 34 35 36
# 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
37
# via DESTDIR, $(DESTDIR)$(prefix) must already exist before
38 39 40
# you execute make install.
DESTDIR=

41 42
DI=$(DESTDIR)$(INCPATH)
DL=$(DESTDIR)$(LIBPATH)
43

44 45 46 47
CDEBUG = -g -DPNG_DEBUG=5
LDDEBUG =
CRELEASE = -O2
LDRELEASE = -s
48
WARNMORE=-W -Wall
49
CFLAGS = -I$(ZLIBINC) $(WARNMORE) $(CRELEASE)
50
LDFLAGS = -L. -L$(ZLIBLIB) -lpng16 -lz -lm $(LDRELEASE)
51 52 53 54 55 56 57

# File extensions
O=.o
A=.a
E=

# Variables
58
OBJS =  png$(O) pngerror$(O) pngget$(O) pngmem$(O) pngpread$(O) \
59
	pngread$(O) pngrio$(O) pngrtran$(O) pngrutil$(O) pngset$(O) \
60
	pngtrans$(O) pngwio$(O) pngwrite$(O) pngwtran$(O) pngwutil$(O)
61 62

# Targets
63
all: $(LIBNAME)$(A) pngtest$(E)
64

65 66 67 68
include scripts/pnglibconf.mak
REMOVE = $(RM_F)
DFNFLAGS = $(DEFS) $(CPPFLAGS)

69
$(LIBNAME)$(A): $(OBJS)
70
	$(AR_RC) $@ $(OBJS)
71 72 73 74 75
	$(RANLIB) $@

test: pngtest$(E)
	./pngtest$(E)

76
pngtest$(E): pngtest$(O) $(LIBNAME)$(A)
77 78
	$(LD) -o $@ pngtest$(O) $(LDFLAGS)

79
install: $(LIBNAME)$(A)
80 81 82
	-@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
83 84
	-@$(RM_F) $(DI)/$(LIBNAME)/png.h
	-@$(RM_F) $(DI)/$(LIBNAME)/pngconf.h
85
	-@$(RM_F) $(DI)/$(LIBNAME)/pnglibconf.h
86 87
	-@$(RM_F) $(DI)/png.h
	-@$(RM_F) $(DI)/pngconf.h
88
	-@$(RM_F) $(DI)/pnglibconf.h
89
	cp png.h pngconf.h pnglibconf.h $(DI)/$(LIBNAME)
90
	chmod 644 $(DI)/$(LIBNAME)/png.h \
91
	$(DI)/$(LIBNAME)/pngconf.h \
92
	$(DI)/$(LIBNAME)/pnglibconf.h
93 94 95 96
	-@$(RM_F) -r $(DI)/libpng
	(cd $(DI); $(LN_SF) $(LIBNAME) libpng; $(LN_SF) $(LIBNAME)/* .)
	-@$(RM_F) $(DL)/$(LIBNAME)$(A)
	-@$(RM_F) $(DL)/libpng$(A)
97 98
	cp $(LIBNAME)$(A) $(DL)/$(LIBNAME)$(A)
	chmod 644 $(DL)/$(LIBNAME)$(A)
99 100
	(cd $(DL); $(LN_SF) $(LIBNAME)$(A) libpng$(A))
	(cd $(DI); $(LN_SF) libpng/* .;)
101 102

clean:
103 104
	$(RM_F) *.o $(LIBNAME)$(A) pngtest pngout.png pnglibconf.h

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
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
pngget$(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
pngpread$(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
pngrio$(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
pngset$(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
pngwio$(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
120

121
pngtest$(O):  png.h pngconf.h pnglibconf.h