1 2 3 4 5 6 7 8 9 10 11 12 13
# This comment should be removed .PHONY: build test clean # TODO: add install target build: echo "Building # project" test: build echo "Running tests" clean: rm -rf target