Skip to content

Commit 7eefa06

Browse files
committed
feat: Add aliases for Makefile targets
1 parent be9fbbf commit 7eefa06

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
.PHONY: all version test dist clean
1+
.PHONY: all version v test t dist d clean c
22

33
all: test version
44

5-
version:
5+
version v:
66
git describe --tags
77
python -m setuptools_scm
88

9-
test:
9+
test t:
1010
pytest --cov=src/cedarscript_ast_parser tests/ --cov-report term-missing
1111

12-
dist: test
12+
dist d: test
1313
scripts/check-version.sh
1414
rm -rf dist/cedarscript_*.whl dist/cedarscript_*.tar.gz
1515
python -m build && twine upload dist/*
1616

17-
clean:
17+
clean c:
1818
rm -rfv out dist/cedarscript_*.whl dist/cedarscript_*.tar.gz build/bdist.* build/lib/cedarscript*

0 commit comments

Comments
 (0)