.PHONY: all all: hellolambda hellolambda: hellolambda.cpp g++ -g -o hellolambda hellolambda.cpp .PHONY: clean clean: rm -f hellolambda hellolambda.o