forked from EnzeD/vibe-coding
-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (28 loc) · 878 Bytes
/
Makefile
File metadata and controls
34 lines (28 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Makefile for Vibe Coding Guide
.PHONY: help lint build test clean
help:
@echo "Makefile for Vibe Coding Guide"
@echo ""
@echo "Available commands:"
@echo " help - Show this help message"
@echo " lint - Lint all markdown files"
@echo " build - Build the project (Placeholder)"
@echo " test - Run tests (Placeholder)"
@echo " clean - Clean build artifacts (Placeholder)"
@echo ""
lint:
@echo "Linting markdown files..."
@npm install -g markdownlint-cli
@markdownlint --config .github/lint_config.json '**/*.md'
build:
@echo "Building the project..."
# Add your project build commands here
@echo "Build complete."
test:
@echo "Running tests..."
# Add your test commands here
@echo "Tests complete."
clean:
@echo "Cleaning up build artifacts..."
# Add your clean commands here (e.g., rm -rf dist/ build/)
@echo "Cleanup complete."