cs240/hw/hw2/Makefile
2018-10-15 17:20:57 -04:00

8 lines
163 B
Makefile

all: testing_tool
testing_tool: testing_tool.c functions.c
gcc -g -Wall -Werror -o testing_tool testing_tool.c functions.c
clean:
rm -f *.o *.out testing_tool