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

6 lines
159 B
Bash
Raw Normal View History

2023-12-12 13:58:45 -05:00
#!/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