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
|
raylib.h
|
||||||
game
|
|
||||||
|
|
||||||
*/data/*.c
|
*/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
|
.PHONY: clean run
|
||||||
|
|
||||||
game: data/actions.c data/rooms.c data/room_ins.c data/words.c data/flags.c data/items.c *.c
|
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 game
|
$(CC) *.c $(CFLAGS) -o fatal_text_adventure_linux
|
||||||
|
|
||||||
data/%.c: data/%.txt
|
data/%.c: data/%.txt
|
||||||
echo "char *data_$*_txt = " > data/$*.c
|
echo "char *data_$*_txt = " > data/$*.c
|
||||||
@ -14,9 +14,9 @@ data/%.c: data/%.txt
|
|||||||
perl -pe 's/$$/\\n"/' >> data/$*.c
|
perl -pe 's/$$/\\n"/' >> data/$*.c
|
||||||
echo ";" >> data/$*.c
|
echo ";" >> data/$*.c
|
||||||
|
|
||||||
run: game
|
run: fatal_text_adventure_linux
|
||||||
./game
|
./fatal_text_adventure_linux
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f ./game
|
rm -f ./fatal_text_adventure_linux
|
||||||
rm -f ./data/*.c
|
rm -f ./data/*.c
|
||||||
|
Loading…
Reference in New Issue
Block a user