eitmer/Makefile

17 lines
195 B
Makefile
Raw Normal View History

2019-06-28 15:13:03 +00:00
BIN=eitmer.love
.PHONY: all clean distclean run
all: $(BIN)
$(BIN): bundle/main.lua bundle/conf.lua
cd bundle; zip -9 -r ../$@ *
2019-06-28 15:13:03 +00:00
clean:
rm -f $(BIN)
distclean: clean
run: $(BIN)
love $<