6 lines
71 B
Makefile
6 lines
71 B
Makefile
|
all:
|
||
|
gcc -Wall -Wextra main.c -o ascii-table
|
||
|
|
||
|
run: all
|
||
|
./ascii-table
|