aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: c5202d62eca0b43ad3dfd9bd8db3a854b2d762f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.venv:
	python3 -m venv .venv
	.venv/bin/pip install -r requirements.txt

run: .venv
	.venv/bin/hy src/macroknight/game.hy

package:
	zip -r  macroknight.zip \
		assets \
		LICENSE \
		macroknight.tiled-project \
		macroknight.tiled-session \
		Makefile \
		README.md \
		requirements.txt \
		src \
		TODO.org \