# lib.d  dmakefile (for compiling with the DEBUG flag) 
SHELL=/bin/sh
CFLAGS= -g  -DDEBUG
LIB = automatalib.a
LIBOBJ = afsa.o fsa.o input.o lg.o list.o llist.o opt.o pqueue.o reduce.o \
storage.o word.o
$(LIB): $(LIBOBJ)
	ar cr $(LIB) $(LIBOBJ)
	ranlib $(LIB)
.c.o:
	cc -c $(CFLAGS) $*.c 
