diff --git a/.gitignore b/.gitignore index b34e3e0..11ff5df 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ raylib.h -game */data/*.c \ No newline at end of file diff --git a/01_text_adventure/.gitignore b/01_text_adventure/.gitignore new file mode 100644 index 0000000..8b33ca5 --- /dev/null +++ b/01_text_adventure/.gitignore @@ -0,0 +1 @@ +fatal_text_adventure_linux \ No newline at end of file diff --git a/01_text_adventure/Makefile b/01_text_adventure/Makefile index 1733fae..6eeca20 100644 --- a/01_text_adventure/Makefile +++ b/01_text_adventure/Makefile @@ -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