Compare commits

...

2 Commits
1.0 ... master

Author SHA1 Message Date
ff872631a5 Mac build 2025-01-31 14:27:39 -05:00
1c232593d7 Fix butler paths 2025-01-30 19:39:59 -05:00

View File

@ -8,16 +8,20 @@ WIN_CFLAGS=-Wall -lraylib -lm -lpthread
GAME=fatal_text_adventure
DATA_C=data/actions.c data/rooms.c data/room_ins.c data/words.c data/flags.c data/items.c
BUTLER=../butler/butler
ITCH_CHANNEL=01-text-adventure
BUTLER=./butler/butler
ITCH_CHANNEL=thrive
ITCH_CHANNEL_LINUX=$(ITCH_CHANNEL)-linux-x64
ITCH_CHANNEL_WINDOWS=$(ITCH_CHANNEL)-windows-x64
ITCH_CHANNEL_MAC=$(ITCH_CHANNEL)-mac
.PHONY: clean run butler_upload
$(GAME)_linux: $(DATA_C) *.c
$(CC) *.c $(CFLAGS) -o $(GAME)_linux
$(GAME)_linux: $(DATA_C) *.c
$(CC) *.c $(CFLAGS) -o $(GAME)_mac
$(GAME)_windows.exe: $(DATA_C) *.c
$(WIN_CC) *.c $(WIN_LIB) $(WIN_CFLAGS) -o $(GAME)_windows.exe
@ -32,6 +36,9 @@ data/%.c: data/%.txt
run: $(GAME)_linux
SKIP_INTRO=1 ./$(GAME)_linux
run_mac: $(GAME)_mac
SKIP_INTRO=1 ./$(GAME)_mac
run_win: $(GAME)_windows.exe
SKIP_INTRO=1 wine $(GAME)_windows.exe
@ -40,6 +47,8 @@ clean:
rm -f ./$(GAME)_linux.zip
rm -f ./$(GAME)_windows.exe
rm -f ./$(GAME)_windows.zip
rm -f ./$(GAME)_mac
rm -f ./$(GAME)_mac.zip
rm -f ./data/*.c
$(GAME)_linux.zip: $(GAME)_linux
@ -50,6 +59,13 @@ $(GAME)_windows.zip: $(GAME)_windows.exe
rm -f ./$(GAME)_windows.zip
zip -r $(GAME)_windows.zip $(GAME)_windows.exe img/*.png
$(GAME)_mac.zip: $(GAME)_mac
rm -f ./$(GAME)_mac.zip
zip -r $(GAME)_mac.zip $(GAME)_mac img/*.png
butler_upload: $(GAME)_linux.zip $(GAME)_windows.zip
$(BUTLER) push ./$(GAME)_linux.zip bassguitarbill/fatal-distractions:$(ITCH_CHANNEL_LINUX)
$(BUTLER) push ./$(GAME)_windows.zip bassguitarbill/fatal-distractions:$(ITCH_CHANNEL_WINDOWS)
$(BUTLER) push ./$(GAME)_linux.zip bassguitarbill/$(ITCH_CHANNEL):$(ITCH_CHANNEL_LINUX)
$(BUTLER) push ./$(GAME)_windows.zip bassguitarbill/$(ITCH_CHANNEL):$(ITCH_CHANNEL_WINDOWS)
butler_upload_mac: $(GAME)_mac.zip
$(BUTLER) push ./$(GAME)_mac.zip bassguitarbill/$(ITCH_CHANNEL):$(ITCH_CHANNEL_MAC)