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

5 lines
104 B
Bash
Raw Normal View History

2023-12-12 13:58:45 -05:00
#!/bin/sh
2023-12-31 17:45:50 -05:00
cc -o ascii ascii.c && ./ascii > table
cc -DRAW -o ascii ascii.c && ./ascii > raw
2023-12-12 13:58:45 -05:00
rm -f ascii