Change the name of the game
This commit is contained in:
parent
5ceb0eae5d
commit
b323bd0728
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,3 @@
|
||||
raylib.h
|
||||
game
|
||||
|
||||
*/data/*.c
|
1
01_text_adventure/.gitignore
vendored
Normal file
1
01_text_adventure/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
fatal_text_adventure_linux
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user