You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1014 B
34 lines
1014 B
14 years ago
|
# makefile for libpng
|
||
|
# Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
|
||
|
# For conditions of distribution and use, see copyright notice in png.h
|
||
|
# modified for LC56/ATARI assumes libz.lib is in same dir and uses default
|
||
|
# rules for library management
|
||
|
#
|
||
|
CFLAGS=-I..\zlib -O
|
||
|
LBR = png.lib
|
||
|
LDFLAGS=-lpng -lz -lm
|
||
|
|
||
|
# where make install puts libpng.a and png.h
|
||
|
prefix=/usr/local
|
||
|
|
||
|
OBJS = $(LBR)(png.o) $(LBR)(pngset.o) $(LBR)(pngget.o) $(LBR)(pngrutil.o)\
|
||
|
$(LBR)(pngtrans.o) $(LBR)(pngwutil.o)\
|
||
|
$(LBR)(pngread.o) $(LBR)(pngerror.o) $(LBR)(pngwrite.o)\
|
||
|
$(LBR)(pngrtran.o) $(LBR)(pngwtran.o)\
|
||
|
$(LBR)(pngmem.o) $(LBR)(pngrio.o) $(LBR)(pngwio.o) $(LBR)(pngpread.o)
|
||
|
|
||
|
all: $(LBR) pngtest.ttp
|
||
|
|
||
|
$(LBR): $(OBJS)
|
||
|
|
||
|
pngtest.ttp: pngtest.o $(LBR)
|
||
|
$(CC) $(CFLAGS) $(LDFLAGS) -o$@ pngtest.o
|
||
|
|
||
|
install: libpng.a
|
||
|
-@mkdir $(prefix)/include
|
||
|
-@mkdir $(prefix)/lib
|
||
|
cp png.h $(prefix)/include
|
||
|
cp pngconf.h $(prefix)/include
|
||
|
chmod 644 $(prefix)/include/png.h
|
||
|
chmod 644 $(prefix)/include/pngconf.h
|