12 lines
129 B
Makefile
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
|