ODIR=.
LIBFILES= chain-hash.o hash_func.o
CC=gcc
CFLAGS=-g -I../include

arlib: $(LIBFILES)

clean:
	-rm *.o core *\~ test1

check: arlib dotest1

test1: test1.o $(LIBFILES)
	$(CC) $(CFLAGS) -o test1 $(LIBFILES) test1.o -L.. -leutl

dotest1: test1 FORCE
	@echo "Running Test 1"
	./test1
	@echo "Test 1 passed"

FORCE:
