CFLAGS = -g
BIN = ../bin

dla:	dla.c maps.o cx.o ps.o
	if(test ! -x ${BIN}) then (mkdir ${BIN}) fi
	cc -g dla.c maps.o cx.o ps.o -lm -o ${BIN}/dla
