DEST=./libdate.a
$(DEST)::	*.c
	cc -c -O $?
	ar rv $(DEST) *.o
	ranlib $(DEST)
	rm *.o
print:	*.c *.h
	lpr $?
	touch print
