eitmer/Makefile

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 $<