This repository has been archived on 2024-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
ascii/build.sh
Emil Williams f8a61f15e3
init
2023-12-12 18:58:45 +00:00

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