From 4359caa3ca15c75c4241d869259af3be8cc8375f Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 29 Apr 2024 15:43:17 +0530 Subject: Moved implementations to folder --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index afdfdbf..b7ca82b 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,15 @@ CC=clang++ -CFLAGS=-pedantic -Wall -ggdb -fsanitize=address +CFLAGS=-pedantic -Wall -Wextra -Werror -fsanitize=address -fsanitize=undefined -ggdb -fsanitize=address VFLAGS=--show-leak-kinds=all --leak-check=full OUT= -btree.out: btree.cpp +btree.out: impls/btree.cpp $(CC) $(CFLAGS) $^ -o $@ -list.out: list.cpp +list.out: impls/list.cpp $(CC) $(CFLAGS) $^ -o $@ -bsearch.out: bsearch.cpp +bsearch.out: impls/bsearch.cpp $(CC) $(CFLAGS) $^ -o $@ .PHONY: run @@ -18,4 +18,4 @@ run: $(OUT) .PHONY: clean clean: - rm -v *.out; + rm -v *.out *.txt; -- cgit v1.2.3-13-gbd6f