libpng/makefile.lnx

98 lines
2.8 KiB
Plaintext
Raw Normal View History

1998-01-07 21:54:20 -05:00
# makefile for libpng on Linux ELF with gcc
1997-01-17 02:34:35 -05:00
# Copyright (C) 1996, 1997 Andreas Dilger
1998-01-16 23:06:18 -05:00
# Copyright (C) 1998 Greg Roelofs
1995-07-20 03:43:20 -04:00
# For conditions of distribution and use, see copyright notice in png.h
1996-01-16 02:51:56 -05:00
CC=gcc
1997-05-16 03:46:07 -04: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 \
-Wmissing-declarations -Wtraditional -Wcast-align \
-Wstrict-prototypes -Wmissing-prototypes #-Wconversion
1998-01-07 21:54:20 -05:00
CFLAGS=-I$(ZLIBINC) -Wall -O3 -funroll-loops -malign-loops=2 \
-malign-functions=2 #$(WARNMORE) -g -DPNG_DEBUG=5
1997-05-16 03:46:07 -04:00
LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng -lz -lm
1995-07-20 03:43:20 -04:00
1996-01-16 02:51:56 -05:00
RANLIB=ranlib
#RANLIB=echo
1995-07-20 03:43:20 -04:00
1998-01-07 21:54:20 -05:00
PNGMAJ = 2
1998-01-30 22:45:12 -05:00
PNGMIN = 0.99
1997-01-17 02:34:35 -05:00
PNGVER = $(PNGMAJ).$(PNGMIN)
1996-01-16 02:51:56 -05:00
# where make install puts libpng.a, libpng.so*, and png.h
1995-12-19 04:22:19 -05:00
prefix=/usr/local
1997-05-16 03:46:07 -04:00
INCPATH=$(prefix)/include
LIBPATH=$(prefix)/lib
1995-07-20 03:43:20 -04:00
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
1998-01-07 21:54:20 -05:00
OBJSDLL = $(OBJS:.o=.pic.o)
.SUFFIXES: .c .o .pic.o
.c.pic.o:
$(CC) -c $(CFLAGS) -fPIC -o $@ $*.c
all: libpng.a libpng.so pngtest
1995-07-20 03:43:20 -04:00
libpng.a: $(OBJS)
1998-01-07 21:54:20 -05:00
ar rc $@ $(OBJS)
1995-07-20 03:43:20 -04:00
$(RANLIB) $@
1997-01-17 02:34:35 -05:00
libpng.so: libpng.so.$(PNGMAJ)
ln -sf libpng.so.$(PNGMAJ) libpng.so
1996-01-16 02:51:56 -05:00
1997-01-17 02:34:35 -05:00
libpng.so.$(PNGMAJ): libpng.so.$(PNGVER)
ln -sf libpng.so.$(PNGVER) libpng.so.$(PNGMAJ)
1996-01-16 02:51:56 -05:00
1998-01-07 21:54:20 -05:00
libpng.so.$(PNGVER): $(OBJSDLL)
gcc -shared -Wl,-soname,libpng.so.$(PNGMAJ) -o libpng.so.$(PNGVER) \
$(OBJSDLL)
1996-01-16 02:51:56 -05:00
pngtest: pngtest.o libpng.so
1998-01-07 21:54:20 -05:00
$(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
1998-01-07 21:54:20 -05:00
install: libpng.a libpng.so.$(PNGVER)
1997-05-16 03:46:07 -04:00
-@mkdir $(INCPATH) $(LIBPATH)
cp png.h pngconf.h $(INCPATH)
chmod 644 $(INCPATH)/png.h $(INCPATH)/pngconf.h
1998-01-07 21:54:20 -05:00
cp libpng.a libpng.so.$(PNGVER) $(LIBPATH)
1997-05-16 03:46:07 -04:00
chmod 755 $(LIBPATH)/libpng.so.$(PNGVER)
1998-01-07 21:54:20 -05:00
-@/bin/rm -f $(LIBPATH)/libpng.so.$(PNGMAJ) $(LIBPATH)/libpng.so
1997-05-16 03:46:07 -04:00
(cd $(LIBPATH); ln -sf libpng.so.$(PNGVER) libpng.so.$(PNGMAJ); \
1997-01-17 02:34:35 -05:00
ln -sf libpng.so.$(PNGMAJ) libpng.so)
1995-07-20 03:43:20 -04:00
clean:
1998-01-07 21:54:20 -05:00
/bin/rm -f *.o libpng.a libpng.so* pngtest pngout.png
1995-07-20 03:43:20 -04:00
# DO NOT DELETE THIS LINE -- make depend depends on it.
1998-01-07 21:54:20 -05:00
png.o png.pic.o: png.h pngconf.h
pngerror.o pngerror.pic.o: png.h pngconf.h
pngrio.o pngrio.pic.o: png.h pngconf.h
pngwio.o pngwio.pic.o: png.h pngconf.h
pngmem.o pngmem.pic.o: png.h pngconf.h
pngset.o pngset.pic.o: png.h pngconf.h
pngget.o pngget.pic.o: png.h pngconf.h
pngread.o pngread.pic.o: png.h pngconf.h
pngrtran.o pngrtran.pic.o: png.h pngconf.h
pngrutil.o pngrutil.pic.o: png.h pngconf.h
pngtrans.o pngtrans.pic.o: png.h pngconf.h
pngwrite.o pngwrite.pic.o: png.h pngconf.h
pngwtran.o pngwtran.pic.o: png.h pngconf.h
pngwutil.o pngwutil.pic.o: png.h pngconf.h
pngpread.o pngpread.pic.o: png.h pngconf.h
1995-09-26 06:22:39 -04:00
pngtest.o: png.h pngconf.h