diff options
author | equa <equaa@protonmail.com> | 2021-04-24 13:26:17 -0500 |
---|---|---|
committer | equa <equaa@protonmail.com> | 2021-04-24 13:26:17 -0500 |
commit | 888619ec34e04f3d330c687bf8b0ea55f92a8bcb (patch) | |
tree | 6e38aa20984078b83246b302bda96310274f1b3c /Makefile | |
parent | 5886071e3e05e6d75ffe0990776b5bd407f7ce3d (diff) |
clean up
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c3c9a3e --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +OUTLUA := $(patsubst %.fnl,%.lua,$(wildcard lib/*.fnl)) + +all: $(OUTLUA) + +%.lua: %.fnl + fennel --compile $< > $@ |