cs240/labs/lab3/task2/Makefile
2018-10-15 17:20:57 -04:00

7 lines
96 B
Makefile

all: convert
convert: convert.c
gcc -g -o convert convert.c
clean:
rm -f convert *.out *.txt