Files
resume/Makefile
2023-11-29 20:01:00 -08:00

12 lines
308 B
Makefile

.PHONY: build
build: ## Generate resume locally
pnpm install
pnpm build
help: ## Show this help
@echo "Usage: make [target]"
@echo ""
@echo "Targets:"
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage: make [target]\n\nTargets:\n"} /^[a-zA-Z_-]+:.*?##/ { printf " %-30s %s\n", $$1, $$2 }' $(MAKEFILE_LIST)