cs240/labs/lab3/task2/Makefile

7 lines
96 B
Makefile
Raw Normal View History

2018-10-15 17:20:57 -04:00
all: convert
convert: convert.c
gcc -g -o convert convert.c
clean:
rm -f convert *.out *.txt