LIBFILES= xfile.o 
CC=gcc
CFLAGS=-g -I../include

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

arlib: $(LIBFILES)

check: dotest1

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

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

FORCE:
