Makefile 842 B

12345678910111213141516171819202122232425262728293031323334
  1. # Makefile for Vibe Coding Guide
  2. .PHONY: help lint build test clean
  3. help:
  4. @echo "Makefile for Vibe Coding Guide"
  5. @echo ""
  6. @echo "Available commands:"
  7. @echo " help - Show this help message"
  8. @echo " lint - Lint all markdown files"
  9. @echo " build - Build the project (Placeholder)"
  10. @echo " test - Run tests (Placeholder)"
  11. @echo " clean - Clean build artifacts (Placeholder)"
  12. @echo ""
  13. lint:
  14. @echo "Linting markdown files..."
  15. @npm install -g markdownlint-cli
  16. @markdownlint **/*.md
  17. build:
  18. @echo "Building the project..."
  19. # Add your project build commands here
  20. @echo "Build complete."
  21. test:
  22. @echo "Running tests..."
  23. # Add your test commands here
  24. @echo "Tests complete."
  25. clean:
  26. @echo "Cleaning up build artifacts..."
  27. # Add your clean commands here (e.g., rm -rf dist/ build/)
  28. @echo "Cleanup complete."