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

109 lines
3.3 KiB
Plaintext
Raw Normal View History

1999-09-17 17:27:26 +00:00
# makefile for libpng on BeOS x86 ELF with gcc
1999-10-01 19:22:25 +00:00
# modified from makefile.linux by Sander Stoks
2000-05-04 02:06:11 +00:00
# Copyright (C) 1999 Greg Roelofs
2000-06-04 19:29:29 +00:00
# Copyright (C) 1996, 1997 Andreas Dilger
1999-09-17 17:27:26 +00:00
# For conditions of distribution and use, see copyright notice in png.h
CC=gcc
# Where the zlib library and include files are located
ZLIBLIB=/usr/local/lib
ZLIBINC=/usr/local/include
2002-02-22 05:14:23 +00:00
# read libpng.txt or png.h to see why PNGMAJ is 0. You should not
2001-01-22 14:52:16 +00:00
# have to change it.
2002-02-22 05:14:23 +00:00
PNGMAJ = 0
PNGMIN = 1.2.2beta1
2001-01-22 14:52:16 +00:00
PNGVER = $(PNGMAJ).$(PNGMIN)
1999-09-17 17:27:26 +00:00
ALIGN=
1999-09-18 15:54:36 +00:00
# For i386:
1999-09-17 17:27:26 +00:00
# ALIGN=-malign-loops=2 -malign-functions=2
WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow \
-Wmissing-declarations -Wtraditional -Wcast-align \
-Wstrict-prototypes -Wmissing-prototypes #-Wconversion
# On BeOS, -O1 is actually better than -O3. This is a known bug but it's
# still here in R4.5
CFLAGS=-I$(ZLIBINC) -Wall -O1 -funroll-loops \
$(ALIGN) # $(WARNMORE) -g -DPNG_DEBUG=5
# LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng -lz -lm
2002-02-22 05:14:23 +00:00
LDFLAGS=-L. -Wl,-soname=$(LIBNAME).so.$(PNGMAJ) -L$(ZLIBLIB) -lz -lm
1999-09-17 17:27:26 +00:00
RANLIB=ranlib
#RANLIB=echo
2002-02-22 05:14:23 +00:00
# where make install puts libpng.a, libpng12.so*, and png.h
1999-09-17 17:27:26 +00:00
prefix=/usr/local
INCPATH=$(prefix)/include
LIBPATH=$(prefix)/lib
2002-02-22 05:14:23 +00:00
LIBNAME=libpng12
1999-09-17 17:27:26 +00:00
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
pngwtran.o pngmem.o pngerror.o pngpread.o
OBJSDLL = $(OBJS)
.SUFFIXES: .c .o
2002-02-22 05:14:23 +00:00
all: libpng.a $(LIBNAME).so pngtest
1999-09-17 17:27:26 +00:00
libpng.a: $(OBJS)
ar rc $@ $(OBJS)
$(RANLIB) $@
2002-02-22 05:14:23 +00:00
$(LIBNAME).so: $(LIBNAME).so.$(PNGMAJ)
ln -sf $(LIBNAME).so.$(PNGMAJ) $(LIBNAME).so
cp $(LIBNAME).so* /boot/home/config/lib
1999-09-17 17:27:26 +00:00
2002-02-22 05:14:23 +00:00
$(LIBNAME).so.$(PNGMAJ): $(LIBNAME).so.$(PNGVER)
ln -sf $(LIBNAME).so.$(PNGVER) $(LIBNAME).so.$(PNGMAJ)
1999-09-17 17:27:26 +00:00
2002-02-22 05:14:23 +00:00
$(LIBNAME).so.$(PNGVER): $(OBJSDLL)
$(CC) -L$(ZLIBLIB) -lz -nostart -Wl,-soname,$(LIBNAME).so.$(PNGMAJ) -o
$(LIBNAME).so.$(PNGVER) \
1999-09-17 17:27:26 +00:00
$(OBJSDLL)
2002-02-22 05:14:23 +00:00
pngtest: pngtest.o $(LIBNAME).so
1999-09-17 17:27:26 +00:00
$(CC) -L$(ZLIBLIB) -lz -lpng -o pngtest pngtest.o
test: pngtest
./pngtest
2002-02-22 05:14:23 +00:00
install: libpng.a $(LIBNAME).so.$(PNGVER)
1999-09-17 17:27:26 +00:00
-@mkdir $(INCPATH) $(LIBPATH)
cp png.h pngconf.h $(INCPATH)
chmod 644 $(INCPATH)/png.h $(INCPATH)/pngconf.h
2002-02-22 05:14:23 +00:00
-@mkdir $(INCPATH) $(LIBPATH)/$(LIBNAME)
cp png.h pngconf.h $(INCPATH)/$(LIBNAME)
chmod 644 $(INCPATH)/$(LIBNAME)/png.h $(INCPATH)/$(LIBNAME)/pngconf.h
cp libpng.a $(LIBNAME).so.$(PNGVER) $(LIBPATH)
chmod 755 $(LIBPATH)/$(LIBNAME).so.$(PNGVER)
-@/bin/rm -f $(LIBPATH)/$(LIBNAME).so.$(PNGMAJ) $(LIBPATH)/$(LIBNAME).so
(cd $(LIBPATH); ln -sf $(LIBNAME).so.$(PNGVER) $(LIBNAME).so.$(PNGMAJ); \
ln -sf $(LIBNAME).so.$(PNGMAJ) $(LIBNAME).so)
1999-09-17 17:27:26 +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
1999-09-17 17:27:26 +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