Make generated C files a bit nicer to look at

This commit is contained in:
Bill Rossi 2025-01-18 06:43:22 -05:00
parent 9da35b5854
commit fe24e4f01b
2 changed files with 11 additions and 7 deletions

View File

@ -7,12 +7,16 @@ game: data/actions.c data/rooms.c data/transitions.c data/words.c data/flags.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
echo "char *data_$*_txt = " > data/$*.c
cat data/$*.txt | \
perl -pe 's/ *\| */|/g' | \
perl -pe 's/^/"/' | \
perl -pe 's/$$/\\n"/' >> data/$*.c
echo ";" >> data/$*.c
run: game
./game
clean:
rm -f ./game
rm -f ./data/*.c