diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2015-10-15 18:34:07 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2015-10-15 18:34:07 +0200 |
commit | 6d04ada06ce29868338face2fbbec8ab72c48dd2 (patch) | |
tree | 537ea335a906f7b8ef177ac435433a40b3731b50 /Makefile | |
parent | d9da54abcc784ecca5e1c0c415820a32e68c2296 (diff) | |
download | esp-playground-6d04ada06ce29868338face2fbbec8ab72c48dd2.tar.gz esp-playground-6d04ada06ce29868338face2fbbec8ab72c48dd2.tar.bz2 esp-playground-6d04ada06ce29868338face2fbbec8ab72c48dd2.tar.xz esp-playground-6d04ada06ce29868338face2fbbec8ab72c48dd2.zip |
wip
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2,11 +2,12 @@ all: @echo Check out README.md %.lc:%.lua - @luac -s -o $@ $< + luac -s -o $@ $< + luac -o $(basename $@).debug.lc $< compile-%: @$(MAKE) -j 8 $(patsubst %.lua,%.lc,$(wildcard $(patsubst compile-%,%,$@)/*.lua)) upload-%: - @$(MAKE) $(patsubst upload-%,compile-%,$@) +# @$(MAKE) $(patsubst upload-%,compile-%,$@) ./upload.sh $(patsubst upload-%,%,$@) |