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

122 lines
3.7 KiB
Plaintext
Raw Normal View History

1998-05-02 17:52:25 +00:00
# makefile for SCO OSr5 ELF and Unixware 7 with Native cc
# Contributed by Mike Hopkirk (hops@sco.com) modified from Makefile.lnx
# force ELF build dynamic linking, SONAME setting in lib and RPATH in app
2000-05-04 02:06:11 +00:00
# Copyright (C) 1998 Greg Roelofs
2000-06-04 19:29:29 +00:00
# Copyright (C) 1996, 1997 Andreas Dilger
1998-05-02 17:52:25 +00:00
# For conditions of distribution and use, see copyright notice in png.h
CC=cc
1998-12-29 17:47:59 +00:00
# where make install puts libpng.a, libpng.so*, and png.h
prefix=/usr/local
1998-05-02 17:52:25 +00:00
# Where the zlib library and include files are located
#ZLIBLIB=/usr/local/lib
#ZLIBINC=/usr/local/include
ZLIBLIB=../zlib
ZLIBINC=../zlib
2000-11-23 17:51:42 +00:00
CFLAGS= -dy -belf -I$(ZLIBINC) -O3
1998-05-02 17:52:25 +00:00
LDFLAGS=-L. -L$(ZLIBLIB) -lpng -lz -lm
#RANLIB=ranlib
RANLIB=echo
2002-02-22 05:14:23 +00:00
# read libpng.txt or png.h to see why PNGMAJ is 0. You should not
1998-05-02 17:52:25 +00:00
# have to change it.
2002-02-22 05:14:23 +00:00
PNGMAJ = 0
2002-02-24 00:55:25 +00:00
PNGMIN = 1.2.2beta2
1998-05-02 17:52:25 +00:00
PNGVER = $(PNGMAJ).$(PNGMIN)
2002-02-22 05:14:23 +00:00
LIBNAME = libpng12
1998-05-02 17:52:25 +00:00
INCPATH=$(prefix)/include
LIBPATH=$(prefix)/lib
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
1999-09-17 17:27:26 +00:00
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
pngwtran.o pngmem.o pngerror.o pngpread.o
1998-05-02 17:52:25 +00:00
OBJSDLL = $(OBJS:.o=.pic.o)
.SUFFIXES: .c .o .pic.o
.c.pic.o:
$(CC) -c $(CFLAGS) -KPIC -o $@ $*.c
2002-02-22 05:14:23 +00:00
all: libpng.a $(LIBNAME).so pngtest
1998-05-02 17:52:25 +00:00
libpng.a: $(OBJS)
ar rc $@ $(OBJS)
$(RANLIB) $@
2002-02-22 05:14:23 +00:00
$(LIBNAME).so: $(LIBNAME).so.$(PNGMAJ)
ln -f -s $(LIBNAME).so.$(PNGMAJ) $(LIBNAME).so
1998-05-02 17:52:25 +00:00
2002-02-22 05:14:23 +00:00
$(LIBNAME).so.$(PNGMAJ): $(LIBNAME).so.$(PNGVER)
ln -f -s $(LIBNAME).so.$(PNGVER) $(LIBNAME).so.$(PNGMAJ)
1998-05-02 17:52:25 +00:00
2002-02-22 05:14:23 +00:00
$(LIBNAME).so.$(PNGVER): $(OBJSDLL)
$(CC) -G -Wl,-h,$(LIBNAME).so.$(PNGMAJ) -o $(LIBNAME).so.$(PNGVER) \
1998-05-02 17:52:25 +00:00
$(OBJSDLL)
2002-02-22 05:14:23 +00:00
pngtest: pngtest.o $(LIBNAME).so
1998-05-02 17:52:25 +00:00
LD_RUN_PATH=.:$(ZLIBLIB) $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
test: pngtest
./pngtest
2002-02-24 00:55:25 +00:00
install-static: libpng.a
-@if [ ! -d $(INCPATH) ]; then mkdir $(INCPATH); fi
-@if [ ! -d $(LIBPATH) ]; then mkdir $(LIBPATH); fi
1998-05-02 17:52:25 +00:00
cp png.h pngconf.h $(INCPATH)
chmod 644 $(INCPATH)/png.h $(INCPATH)/pngconf.h
2002-02-24 00:55:25 +00:00
cp libpng.a $(LIBPATH)
chmod 644 $(LIBPATH)/libpng.a
install: libpng.a $(LIBNAME).so.$(PNGVER)
-@if [ ! -d $(INCPATH) ]; then mkdir $(INCPATH); fi
-@if [ ! -d $(LIBPATH) ]; then mkdir $(LIBPATH); fi
-@if [ ! -d $(INCPATH)/$(LIBNAME) ]; then mkdir $(INCPATH)/$(LIBNAME); fi
cp png.h pngconf.h $(INCPATH)/$(LIBNAME)
2002-02-22 05:14:23 +00:00
chmod 644 $(INCPATH)/$(LIBNAME)/png.h $(INCPATH)/$(LIBNAME)/pngconf.h
2002-02-24 00:55:25 +00:00
-@/bin/rm -f $(INCPATH)/png.h $(INCPATH)/pngconf.h
ln -f -s $(INCPATH)/$(LIBNAME)/png.h $(INCPATH)
ln -f -s $(INCPATH)/$(LIBNAME)/pngconf.h $(INCPATH)
cp libpng.a $(LIBPATH)/$(LIBNAME).a
chmod 644 $(LIBPATH)/$(LIBNAME).a
-@/bin/rm -f $(LIBPATH)/libpng.a
ln -f -s $(LIBPATH)/$(LIBNAME).a $(LIBPATH)/libpng.a
cp $(LIBNAME).so.$(PNGVER) $(LIBPATH)
2002-02-22 05:14:23 +00:00
chmod 755 $(LIBPATH)/$(LIBNAME).so.$(PNGVER)
2002-02-24 00:55:25 +00:00
-@/bin/rm -f $(LIBPATH)/$(LIBNAME).so.$(PNGMAJ)* $(LIBPATH)/$(LIBNAME).so
2002-02-22 05:14:23 +00:00
(cd $(LIBPATH); \
ln -f -s $(LIBNAME).so.$(PNGVER) $(LIBNAME).so.$(PNGMAJ); \
ln -f -s $(LIBNAME).so.$(PNGMAJ) $(LIBNAME).so)
1998-05-02 17:52:25 +00:00
clean:
2002-02-22 05:14:23 +00:00
/bin/rm -f *.o libpng.a $(LIBNAME).so $(LIBNAME).so.$(PNGMAJ)* pngtest pngout.png
1998-05-02 17:52:25 +00:00
1999-12-10 15:43:02 +00:00
DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
writelock:
chmod a-w *.[ch35] $(DOCS) scripts/*
1998-05-02 17:52:25 +00:00
# DO NOT DELETE THIS LINE -- make depend depends on it.
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
pngtest.o: png.h pngconf.h