19 lines
356 B
Makefile
19 lines
356 B
Makefile
CC=gcc
|
|
CFLAGS=-Wall -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
|
|
|
|
.PHONY: clean run
|
|
|
|
game: data/rooms.c data/transitions.c data/words.c *.c
|
|
$(CC) *.c $(CFLAGS) -o game
|
|
|
|
data/%.c: data/%.txt
|
|
echo -n "char *data_$*_txt = \"" > data/$*.c
|
|
cat data/$*.txt | perl -pe 's/\n/\\n/g' >> data/$*.c
|
|
echo "\";" >> data/$*.c
|
|
|
|
run: game
|
|
./game
|
|
|
|
clean:
|
|
rm -f ./game
|