PROGS= cal
TARGETS= $(PROGS)

all: $(TARGETS)

clean:
	rm $(TARGETS)

install: $(TARGETS)
	install $(PROGS) /usr/bin
