ajout leak valgrind dans makefile skeleton

This commit is contained in:
hugogogo
2022-03-14 01:42:24 +01:00
parent 84f19ea2c0
commit cc2558f6a4

View File

@@ -63,6 +63,9 @@ $(OBJS): $(HEADERS:%=$(D_HEADERS)/%)
$(NAME): $(OBJS)
$(CC) $(OBJS) -o $@ $(LIBS)
leaks: $(NAME)
valgrind --leak-check=full --show-leak-kinds=all ./$(NAME)
clean:
$(RM_OBJS)