eitmer/Makefile
2019-06-29 16:49:02 +03:00

17 lines
216 B
Makefile

BIN=eitmer.love
.PHONY: all clean distclean run
all: $(BIN)
$(BIN): bundle/main.lua bundle/conf.lua bundle/win_image.png
cd bundle; zip -9 -r ../$@ *
clean:
rm -f $(BIN)
distclean: clean
run: $(BIN)
love $<