#
# Makefile for "gifview" program.
#
#  Originally written for DEC Ultrix. Runs perfectly on 4.3BSD and SYSV
#  platforms. Should be portable since it only uses stdio and a couple
#  of signal trapping calls. Feel free to rip out the signals if
#  necessary, as they're not exactly vital.

CC= gcc -O
#CC= gcc -g -DTEST

gifview: gifview.o vtgraph.o
	$(CC) -o gifview gifview.o vtgraph.o

gifview.o: gifview.c
	$(CC) -c gifview.c -o gifview.o

vtgraph.o: vtgraph.c
	$(CC) -c vtgraph.c -o vtgraph.o
