1996-06-17 17:24:45 -04:00
|
|
|
# DJGPP (DOS gcc) makefile for libpng
|
2014-01-20 13:36:30 -05:00
|
|
|
# Copyright (C) 2002, 2006, 2009-2014 Glenn Randers-Pehrson
|
1995-07-20 03:43:20 -04:00
|
|
|
# Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
|
2009-06-24 10:31:28 -04:00
|
|
|
#
|
2009-06-26 22:46:52 -04:00
|
|
|
# This code is released under the libpng license.
|
2009-06-25 14:43:50 -04:00
|
|
|
# For conditions of distribution and use, see the disclaimer
|
2009-06-24 11:27:36 -04:00
|
|
|
# and license in png.h
|
1995-07-20 03:43:20 -04:00
|
|
|
|
2002-04-27 11:11:25 -04:00
|
|
|
# where make install will put libpng.a and png.h
|
1998-12-29 12:47:59 -05:00
|
|
|
#prefix=/usr/local
|
|
|
|
prefix=.
|
2002-04-27 11:11:25 -04:00
|
|
|
INCPATH=$(prefix)/include
|
|
|
|
LIBPATH=$(prefix)/lib
|
1998-12-29 12:47:59 -05:00
|
|
|
|
1996-01-16 02:51:56 -05:00
|
|
|
CC=gcc
|
2014-01-12 11:44:01 -05:00
|
|
|
CPPFLAGS=-I../zlib -DPNG_NO_SNPRINTF
|
|
|
|
CFLAGS=-O
|
1995-09-26 06:22:39 -04:00
|
|
|
LDFLAGS=-L. -L../zlib/ -lpng -lz -lm
|
1995-07-20 03:43:20 -04:00
|
|
|
|
1996-01-16 02:51:56 -05:00
|
|
|
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 \
|
2009-05-02 16:36:08 -04:00
|
|
|
pngmem.o pngerror.o pngpread.o
|
1995-07-20 03:43:20 -04:00
|
|
|
|
2014-01-12 11:44:01 -05:00
|
|
|
.c.o:
|
|
|
|
$(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
|
|
|
|
|
2009-05-02 16:36:08 -04:00
|
|
|
all: libpng.a pngtest
|
1995-07-20 03:43:20 -04:00
|
|
|
|
2010-04-17 09:17:51 -04:00
|
|
|
# see scripts/pnglibconf.mak for more options
|
2010-08-24 17:16:35 -04:00
|
|
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
|
|
|
cp scripts/pnglibconf.h.prebuilt $@
|
2010-04-17 09:17:51 -04:00
|
|
|
|
1995-07-20 03:43:20 -04:00
|
|
|
libpng.a: $(OBJS)
|
2004-07-17 23:45:44 -04:00
|
|
|
ar rc $@ $(OBJS)
|
1995-07-20 03:43:20 -04:00
|
|
|
$(RANLIB) $@
|
|
|
|
|
|
|
|
pngtest: pngtest.o libpng.a
|
1998-03-07 15:33:00 -05:00
|
|
|
$(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
|
1996-01-26 02:38:47 -05:00
|
|
|
coff2exe pngtest
|
1995-09-26 06:22:39 -04:00
|
|
|
|
|
|
|
test: pngtest
|
|
|
|
./pngtest
|
1995-07-20 03:43:20 -04:00
|
|
|
clean:
|
2010-04-17 09:17:51 -04:00
|
|
|
rm -f *.o libpng.a pngtest pngout.png pnglibconf.h
|
1995-07-20 03:43:20 -04:00
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
|
|
|
|
2014-01-12 11:44:01 -05:00
|
|
|
png.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngerror.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngrio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngwio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngmem.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngset.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngget.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngpread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngrtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngrutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngtrans.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngwrite.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngwtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
|
|
|
pngwutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
2011-12-17 10:06:34 -05:00
|
|
|
|
2011-12-17 10:57:00 -05:00
|
|
|
pngtest.o: png.h pngconf.h pnglibconf.h
|