diff options
author | Aki <nthirtyone@gmail.com> | 2017-10-03 18:24:07 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-10-03 18:24:07 +0200 |
commit | 832fd64e1011ace02139843b4c2a871b25376866 (patch) | |
tree | 448d5beb3f77e4a25be87b75dcdfcad142598db6 /Makefile | |
parent | de1ab188d737ef731f4ad08788424b802814f1e7 (diff) | |
download | roflnauts-832fd64e1011ace02139843b4c2a871b25376866.zip roflnauts-832fd64e1011ace02139843b4c2a871b25376866.tar.gz roflnauts-832fd64e1011ace02139843b4c2a871b25376866.tar.bz2 |
Updated conf and makefile to use love-release
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -1,5 +1,16 @@ -all: - zip not-nautz lib/object/Object.lua not/*.lua config/maps/*.lua config/menus/*.lua config/*.lua assets/*.png assets/sounds/*.ogg assets/platforms/*.png assets/nauts/*.png assets/music/*.ogg assets/decorations/*.png assets/backgrounds/*.png *.lua gamecontrollerdb.txt settings.default +TOOL=love-release +FLAGS=-x Makefile -x .md + +windows: + $(TOOL) -W 32 $(FLAGS) + +love: + $(TOOL) $(FLAGS) + +mac: + $(TOOL) -M $(FLAGS) + +all: windows love mac clean: - rm ../not-nautz.love
\ No newline at end of file + rm releases/* |