libpng/scripts/makefile.std

76 lines
1.8 KiB
Plaintext
Raw Normal View History

1995-07-20 03:43:20 -04: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
1998-12-29 12:47:59 -05:00
# where make install puts libpng.a and png.h
prefix=/usr/local
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
1996-01-26 02:38:47 -05:00
CC=cc
1998-04-21 16:03:57 -04:00
CFLAGS=-I$(ZLIBINC) -O # -g -DPNG_DEBUG=5
1997-05-16 03:46:07 -04:00
LDFLAGS=-L. -L$(ZLIBLIB) -lpng -lz -lm
1995-07-20 03:43:20 -04:00
1997-05-16 03:46:07 -04:00
#RANLIB=echo
RANLIB=ranlib
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
all: libpng.a pngtest
libpng.a: $(OBJS)
ar rc $@ $(OBJS)
$(RANLIB) $@
pngtest: pngtest.o libpng.a
1998-03-07 15:33:00 -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
install: libpng.a
-@mkdir $(prefix)/include
2002-04-07 17:35:38 -04:00
-@mkdir $(prefix)/include/libpng
1995-07-20 03:43:20 -04:00
-@mkdir $(prefix)/lib
2002-04-07 17:35:38 -04:00
-@rm -f $(prefix)/include/png.h
-@rm -f $(prefix)/include/pngconf.h
cp png.h $(prefix)/include/libpng
cp pngconf.h $(prefix)/include/libpng
chmod 644 $(prefix)/include/libpng/png.h
chmod 644 $(prefix)/include/libpng/pngconf.h
1995-07-20 03:43:20 -04:00
cp libpng.a $(prefix)/lib
chmod 644 $(prefix)/lib/libpng.a
clean:
rm -f *.o libpng.a pngtest pngout.png
1999-12-10 10:43:02 -05:00
DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
writelock:
chmod a-w *.[ch35] $(DOCS) scripts/*
1995-07-20 03:43:20 -04:00
# DO NOT DELETE THIS LINE -- make depend depends on it.
1995-09-26 06:22:39 -04:00
png.o: png.h pngconf.h
1995-12-19 04:22:19 -05:00
pngerror.o: png.h pngconf.h
1996-06-05 16:50:50 -04:00
pngrio.o: png.h pngconf.h
pngwio.o: png.h pngconf.h
1995-09-26 06:22:39 -04:00
pngmem.o: png.h pngconf.h
1997-05-16 03:46:07 -04:00
pngset.o: png.h pngconf.h
pngget.o: png.h pngconf.h
1995-09-26 06:22:39 -04: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 04:22:19 -05:00
pngpread.o: png.h pngconf.h
1996-01-16 02:51:56 -05:00