Files
algorithms/Makefile
Aryadev Chavali ede2e8bfc0 (General)+makefile for common recipes that I'll use in this project
Just write a few lines and it saves so much time.  Don't try to
automate it too much though.
2021-11-20 22:58:43 +00:00

10 lines
155 B
Makefile

CC=clang++
CFLAGS=-pedantic -Wall
list: list.cpp
$(CC) $(CFLAGS) $^ -o $@
.PHONY: memcheck_list
memcheck_list: list
valgrind --leak-check=full ./list;