Change the name of the game

This commit is contained in:
Bill Rossi 2025-01-23 20:47:35 -05:00
parent 5ceb0eae5d
commit b323bd0728
3 changed files with 6 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
raylib.h
game
*/data/*.c

1
01_text_adventure/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
fatal_text_adventure_linux

View File

@ -3,8 +3,8 @@ CFLAGS=-Wall -lraylib -lm -lpthread -ldl -lX11
.PHONY: clean run
game: data/actions.c data/rooms.c data/room_ins.c data/words.c data/flags.c data/items.c *.c
$(CC) *.c $(CFLAGS) -o game
fatal_text_adventure_linux: data/actions.c data/rooms.c data/room_ins.c data/words.c data/flags.c data/items.c *.c
$(CC) *.c $(CFLAGS) -o fatal_text_adventure_linux
data/%.c: data/%.txt
echo "char *data_$*_txt = " > data/$*.c
@ -14,9 +14,9 @@ data/%.c: data/%.txt
perl -pe 's/$$/\\n"/' >> data/$*.c
echo ";" >> data/$*.c
run: game
./game
run: fatal_text_adventure_linux
./fatal_text_adventure_linux
clean:
rm -f ./game
rm -f ./fatal_text_adventure_linux
rm -f ./data/*.c