5 lines
150 B
Makefile
5 lines
150 B
Makefile
maxSumPair: maxSumPair.c
|
|
gcc -Wall -std=gnu99 -o maxSumPair maxSumPair.c
|
|
|
|
valgrind: maxSumPair
|
|
valgrind --leak-check=full ./maxSumPair 13 31 301 103
|