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

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

arlib: $(LIBFILES)

check: dotest1

test1: test1.o debuglib.o
	$(CC) $(CFLAGS) -o test1 debuglib.o test1.o -L.. -leutl -ldb -lmalloc_d

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

FORCE:
