-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (21 loc) · 669 Bytes
/
Makefile
File metadata and controls
27 lines (21 loc) · 669 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
# Makefile for FS25 Claude Skill
SKILL_DIR = skill/fs25-modding-skill/
OUTPUT_DIR = releases/
PACKAGE_SCRIPT = skill/package_skill.py
VERSION = $(shell cat VERSION)
.PHONY: all package clean help
all: package
package:
@echo "📦 Packaging FS25 Claude Skill v$(VERSION)..."
python $(PACKAGE_SCRIPT) $(SKILL_DIR) --output $(OUTPUT_DIR)
@echo "✅ Package created in $(OUTPUT_DIR)"
clean:
@echo "🧹 Cleaning up..."
rm -rf dist/
rm -rf build/
@echo "✨ Done."
help:
@echo "Available commands:"
@echo " make package - Package the skill into $(OUTPUT_DIR)"
@echo " make clean - Remove build artifacts"
@echo " make help - Show this help message"