6 lines
159 B
Bash
Executable File
6 lines
159 B
Bash
Executable File
#!/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
|
|
rm -f ascii
|