From d9da54abcc784ecca5e1c0c415820a32e68c2296 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 11 Oct 2015 14:07:42 +0200 Subject: o Initial import of diller firmware. --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ad8dd73 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +all: + @echo Check out README.md + +%.lc:%.lua + @luac -s -o $@ $< + +compile-%: + @$(MAKE) -j 8 $(patsubst %.lua,%.lc,$(wildcard $(patsubst compile-%,%,$@)/*.lua)) + +upload-%: + @$(MAKE) $(patsubst upload-%,compile-%,$@) + ./upload.sh $(patsubst upload-%,%,$@) -- cgit v1.2.3