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/makefile

69 lines
1.6 KiB
Makefile
Raw Normal View History

1995-07-20 02:43:20 -05:00
# makefile for libpng
# Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
# For conditions of distribution and use, see copyright notice in png.h
1997-05-16 02:46:07 -05:00
# Where the zlib library and include files are located
#ZLIBLIB=/usr/local/lib
#ZLIBINC=/usr/local/include
ZLIBLIB=../zlib
ZLIBINC=../zlib
1996-01-26 01:38:47 -06:00
CC=cc
1997-05-16 02:46:07 -05:00
CFLAGS=-I$(ZLIBINC) -O # -g -DPNG_DEBUG=1
LDFLAGS=-L. -L$(ZLIBLIB) -lpng -lz -lm
1995-07-20 02:43:20 -05:00
1997-05-16 02:46:07 -05:00
#RANLIB=echo
RANLIB=ranlib
1995-07-20 02:43:20 -05:00
# where make install puts libpng.a and png.h
1996-01-26 01:38:47 -06:00
prefix=/usr/local
1995-07-20 02:43:20 -05:00
1997-05-16 02:46:07 -05:00
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
1996-06-17 16:24:45 -05:00
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
1996-06-05 15:50:50 -05:00
pngwtran.o pngmem.o pngerror.o pngpread.o
1995-07-20 02:43:20 -05:00
all: libpng.a pngtest
libpng.a: $(OBJS)
ar rc $@ $(OBJS)
$(RANLIB) $@
pngtest: pngtest.o libpng.a
1995-09-26 05:22:39 -05:00
$(CC) -o pngtest $(CCFLAGS) pngtest.o $(LDFLAGS)
test: pngtest
./pngtest
1995-07-20 02:43:20 -05:00
install: libpng.a
-@mkdir $(prefix)/include
-@mkdir $(prefix)/lib
1996-01-26 01:38:47 -06:00
cp png.h $(prefix)/include
cp pngconf.h $(prefix)/include
1995-07-20 02:43:20 -05:00
chmod 644 $(prefix)/include/png.h
1995-09-26 05:22:39 -05:00
chmod 644 $(prefix)/include/pngconf.h
1995-07-20 02:43:20 -05:00
cp libpng.a $(prefix)/lib
chmod 644 $(prefix)/lib/libpng.a
clean:
rm -f *.o libpng.a pngtest pngout.png
# DO NOT DELETE THIS LINE -- make depend depends on it.
1995-09-26 05:22:39 -05:00
png.o: png.h pngconf.h
1995-12-19 03:22:19 -06:00
pngerror.o: png.h pngconf.h
1996-06-05 15:50:50 -05:00
pngrio.o: png.h pngconf.h
pngwio.o: png.h pngconf.h
1995-09-26 05:22:39 -05:00
pngmem.o: png.h pngconf.h
1997-05-16 02:46:07 -05:00
pngset.o: png.h pngconf.h
pngget.o: png.h pngconf.h
1995-09-26 05:22:39 -05:00
pngread.o: png.h pngconf.h
pngrtran.o: png.h pngconf.h
pngrutil.o: png.h pngconf.h
pngtest.o: png.h pngconf.h
pngtrans.o: png.h pngconf.h
pngwrite.o: png.h pngconf.h
pngwtran.o: png.h pngconf.h
pngwutil.o: png.h pngconf.h
1995-12-19 03:22:19 -06:00
pngpread.o: png.h pngconf.h
1996-01-16 01:51:56 -06:00