From 9f2bb68f4920ac5cdc4ed0b66c84285da7865b09 Mon Sep 17 00:00:00 2001 From: Aaron <aaronquinlan@gmail.com> Date: Sun, 5 Feb 2012 10:38:09 -0500 Subject: [PATCH] Fix make clean to erase bamtools objects. Thanks to John Marshall. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b6643ae6..7ea5c18e 100644 --- a/Makefile +++ b/Makefile @@ -105,7 +105,7 @@ clean: @rm -f $(OBJ_DIR)/* $(BIN_DIR)/* @rm -Rf $(BT_ROOT)/lib @rm -f $(BT_ROOT)/src/api/*.o - @rm -f $(BT_ROOT)/src/api/internal/*.o + @rm -f $(BT_ROOT)/src/api/internal/*/*.o @rm -Rf $(BT_ROOT)/include .PHONY: clean -- GitLab