-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (32 loc) · 883 Bytes
/
Copy pathMakefile
File metadata and controls
43 lines (32 loc) · 883 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
35
36
37
38
39
40
41
42
43
.PHONY: help docs docs-gifs test lint example love2d asteroidz g3d menori core
help:
@echo "Targets:"
@echo " docs Serve documentation with Zensical"
@echo " docs-gifs Generate documentation feature GIFs"
@echo " test Run Busted specs"
@echo " lint Run Luacheck"
@echo " example Run the LOVE2D example"
@echo " love2d Alias for example"
@echo " asteroidz Run the Asteroidz LOVE2D example"
@echo " g3d Run the g3d LOVE2D example"
@echo " menori Run the Menori LOVE2D example"
@echo " core Run the core-only (no LOVE) example"
docs:
zensical serve
docs-gifs:
lua scripts/generate_doc_gifs.lua
test:
busted spec
lint:
luacheck feel.lua feel spec scripts
example:
love examples/love2d
love2d: example
asteroidz:
love examples/asteroidz
g3d:
love examples/3d
menori:
love examples/menori
core:
lua examples/core/main.lua