Files
ascii/Makefile
2026-04-04 20:32:50 +09:00

12 lines
129 B
Makefile

all: ascii.txt
ascii.txt: ascii
./ascii > ascii.txt
ascii: ascii.c
cc -o ascii ascii.c
clean:
rm -f ascii.txt
rm -f ascii