libpng/makefile.gcc

52 lines
1.1 KiB
Plaintext
Raw Normal View History

1996-01-26 02:38:47 -05:00
# gcc/DOS makefile for libpng
1995-07-20 03:43:20 -04:00
# Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
# For conditions of distribution and use, see copyright notice in png.h
1996-01-16 02:51:56 -05:00
CC=gcc
1996-01-26 02:38:47 -05:00
CFLAGS=-I../zlib -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
# where make install puts libpng.a and png.h
1996-01-26 02:38:47 -05:00
#prefix=/usr/local
prefix=.
1995-07-20 03:43:20 -04:00
OBJS = png.o pngrcb.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 \
1996-01-26 02:38:47 -05:00
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
1995-09-26 06:22:39 -04:00
$(CC) -o pngtest $(CCFLAGS) 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
# 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
pngrcb.o: png.h pngconf.h
pngread.o: png.h pngconf.h
1996-01-26 02:38:47 -05:00
pngpread.o: png.h pngconf.h
1995-09-26 06:22:39 -04:00
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
1996-01-16 02:51:56 -05:00