eitmer/Makefile

17 lines
195 B
Makefile

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