5 lines
113 B
Makefile
5 lines
113 B
Makefile
default:
|
|
gcc -O0 -g test.c config.c file.c
|
|
leak-check:
|
|
valgrind --track-origins=yes --leak-check=full ./a.out
|