ODIR=.
LIBFILES= xmalloc.o
CC=gcc
CFLAGS=-g

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

arlib: $(LIBFILES)

check: dotest1

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

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

FORCE:
