CFLAGS = -v -O
LDFLAGS = -lmin -lCSM -ldbas

OBJ = flist_o

flist_exe: $(OBJ)
	ld -oflist_exe $(OBJ) $(LDFLAGS)
#
#clean up
#
clean:
   rm -f -v *_o
