-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (18 loc) · 588 Bytes
/
Copy pathMakefile
File metadata and controls
23 lines (18 loc) · 588 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.PHONY: help migrate test run release
help:
@echo "Usage: make [target]"
@echo ""
@echo "Targets:"
@echo " test Runs unit tests, generates test.json"
@echo " run Runs testing then migration script"
@echo " watch Watches for file changes and runs 'make run' automatically"
@echo " release Release new version with helper shell script."
test:
./scripts/migration/test_migrator.py scripts/migration/test.json
run:
$(MAKE) test
./scripts/migration/migrator.py scripts/migration/test.json
watch:
./scripts/fs.py
release:
@./scripts/version.sh