Imported from libpng-1.2.9beta7.tar

This commit is contained in:
Glenn Randers-Pehrson
2006-03-07 07:09:22 -06:00
parent b7f9593715
commit 5c60b2367e
61 changed files with 1307 additions and 954 deletions

View File

@@ -10,9 +10,9 @@ ZLIBLIB = ../zlib
# Compiler, linker, lib and other tools
CC = gcc
LD = $(CC)
AR = ar rcs
AR_RC = ar rcs
RANLIB = ranlib
RM = rm -f
RM_F = rm -f
CDEBUG = -g -DPNG_DEBUG=5
LDDEBUG =
@@ -35,7 +35,7 @@ OBJS = png$(O) pngerror$(O) pngget$(O) pngmem$(O) pngpread$(O) \
all: libpng$(A) pngtest$(E)
libpng$(A): $(OBJS)
$(AR) $@ $(OBJS)
$(AR_RC) $@ $(OBJS)
$(RANLIB) $@
test: pngtest$(E)
@@ -45,7 +45,7 @@ pngtest$(E): pngtest$(O) libpng$(A)
$(LD) -o $@ pngtest$(O) $(LDFLAGS)
clean:
$(RM) *$(O) libpng$(A) pngtest$(E) pngout.png
$(RM_F) *$(O) libpng$(A) pngtest$(E) pngout.png
png$(O): png.h pngconf.h
pngerror$(O): png.h pngconf.h