never tested it

This commit is contained in:
Emil Williams 2023-12-31 22:45:50 +00:00
parent f8a61f15e3
commit 6ea4748158
No known key found for this signature in database

View File

@ -1,5 +1,4 @@
#!/bin/sh
OPTION=-O2 -Wall -Wextra -Wpedantic -s
cc $OPTION -o ascii ascii.c && ./ascii > table
cc $OPTION -DRAW -o ascii ascii.c && ./ascii > raw
cc -o ascii ascii.c && ./ascii > table
cc -DRAW -o ascii ascii.c && ./ascii > raw
rm -f ascii