diff options
-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) ./$^ |