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

arlib: $(LIBFILES)

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

check: dotest1

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

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

FORCE:
