#
# TITLE:	Makefile for xiobiff
# MODULE:	makefile
# BY:		Ross C Linder (c) 1994
#
# You may freely copy, modify and distribute this code. Ethics dictate
# that you would leave reference to me in the source code.
#
#
# This makefile is for Linux, its so simple you should have no problems
# getting it to work on any platform.

CC	= gcc
CFLAGS	= -O6
LIBS	= -lXpm -lXt -lX11

xiobiff:	xiobiff.o
		gcc -o xiobiff xiobiff.o $(LIBS)
		strip xiobiff

clean:		rm -f xiobiff *.o core

xiobiff.c:	pixmaps.h
