eitmer/Makefile

20 lines
330 B
Makefile
Raw Normal View History

2019-06-29 21:23:06 +00:00
LOVEFILE=eitmer.love
2019-06-28 15:13:03 +00:00
.PHONY: all clean distclean run
2019-06-29 21:23:06 +00:00
all: $(LOVEFILE) eitmer-win32.zip
2019-06-28 15:13:03 +00:00
2019-06-29 21:23:06 +00:00
$(LOVEFILE): bundle/main.lua bundle/conf.lua bundle/win_image.png
cd bundle; zip -9 -r ../$@ *
2019-06-28 15:13:03 +00:00
2019-06-29 21:23:06 +00:00
eitmer-win32.zip: $(LOVEFILE)
sh scripts/package-win32.sh
2019-06-28 15:13:03 +00:00
clean:
2019-06-29 21:23:06 +00:00
rm -rf $(LOVEFILE) *.zip tmp/
2019-06-28 15:13:03 +00:00
distclean: clean
2019-06-29 21:23:06 +00:00
run: $(LOVEFILE)
2019-06-28 15:13:03 +00:00
love $<