From b8b541efbc36ff2d18b03f878b12342947963ce2 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 10 Jul 2023 14:12:31 +0100 Subject: (*)+bsearch to makefile recipes, +ignoring *.txt files --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 02896c9..4d03d93 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,9 @@ btree.out: btree.cpp list.out: list.cpp $(CC) $(CFLAGS) $^ -o $@ +bsearch.out: bsearch.cpp + $(CC) $(CFLAGS) $^ -o $@ + .PHONY: run run: $(OUT) ./$^ -- cgit v1.2.3-13-gbd6f