diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-07-10 14:12:31 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-07-10 14:12:31 +0100 |
commit | b8b541efbc36ff2d18b03f878b12342947963ce2 (patch) | |
tree | 85beded26719c4d7e2006c0f83e6809e121677fb | |
parent | b662f16eff306ef70809d55673dbb2fa126c815d (diff) | |
download | algorithms-b8b541efbc36ff2d18b03f878b12342947963ce2.tar.gz algorithms-b8b541efbc36ff2d18b03f878b12342947963ce2.tar.bz2 algorithms-b8b541efbc36ff2d18b03f878b12342947963ce2.zip |
(*)+bsearch to makefile recipes, +ignoring *.txt files
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | Makefile | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -1,2 +1,3 @@ *.out -*.fasl
\ No newline at end of file +*.fasl +*.txt
\ No newline at end of file @@ -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) ./$^ |