libpng/scripts/makefile.dj2

73 lines
2.5 KiB
Plaintext
Raw Permalink Normal View History

1996-06-17 17:24:45 -04:00
# DJGPP (DOS gcc) makefile for libpng
# 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.
#
# This code is released under the libpng license.
# For conditions of distribution and use, see the disclaimer
# 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
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
CP=cp
RM_F=rm -f
# Pre-built configuration
# See scripts/pnglibconf.mak for more options
PNGLIBCONF_H_PREBUILT = scripts/pnglibconf.h.prebuilt
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
.c.o:
$(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
all: libpng.a pngtest
1995-07-20 03:43:20 -04:00
pnglibconf.h: $(PNGLIBCONF_H_PREBUILT)
$(CP) $(PNGLIBCONF_H_PREBUILT) $@
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:
$(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.
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
pngtest.o: png.h pngconf.h pnglibconf.h