# Makefile for TeXplorators index
#
# config.sun-gcc.h is supplied as a model.
# UnixTeX would like to hear of any interesting
# configuration files for other systems.
# Copy the appropriate config.*.h to config.h
# then make
#
# This Makefile may not work for MSDOS. Make your 
# own one, or compile by hand.
#
CFLAGS = -g
CC = gcc

all:	index 

index:	index.o
	cc -o index index.o

index.o:	index.c config.h

clean:
	rm -f *.o *~ \#* core

veryclean:	clean
	rm -f config.h index