CFLAGS  =   -O
CCFLAGS =   +e2 -O
MAKEDEP =   ../../bin/domakedep
CLIB    =   -lc

OFILES  =   storage.o

all:    storage.o
	
#--------------------------------------------------------------------------------

depend:
	$(MAKEDEP) *.[chC] > deps

clean:
	rm -f core $(OFILES) *..c

clobber:    clean
	rm -f storage.o

touch:
	$(MAKE) -t

include deps

