23 lines
1.1 KiB
Makefile
23 lines
1.1 KiB
Makefile
# **************************************************************************** #
|
|
# #
|
|
# ::: :::::::: #
|
|
# valgrind.mk :+: :+: :+: #
|
|
# +:+ +:+ +:+ #
|
|
# By: apommier <apommier@student.42.fr> +#+ +:+ +#+ #
|
|
# +#+#+#+#+#+ +#+ #
|
|
# Created: 2021/12/10 15:19:04 by jodufour #+# #+# #
|
|
# Updated: 2022/03/06 16:04:33 by apommier ### ########.fr #
|
|
# #
|
|
# **************************************************************************** #
|
|
|
|
VG_OPT = --suppressions=ignoreliberror
|
|
VG_OPT += --leak-check=full
|
|
VG_OPT += --show-leak-kinds=all
|
|
VG_OPT += --track-fds=yes
|
|
VG_OPT += --trace-children=yes
|
|
|
|
valgrind:
|
|
${MAKE} ${NAME} DEBUG=1
|
|
$@ ${VG_OPT} ./${NAME}
|
|
|
|
.PHONY: valgrind |