From f8d828f713203226f9cd58db046c7b767d4b78ad Mon Sep 17 00:00:00 2001 From: Derek Date: Wed, 18 Aug 2010 15:28:51 -0400 Subject: [PATCH] Modified Makefile to ensure creation of bin/ and obj/ directories --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 033c662..185bcad 100644 --- a/Makefile +++ b/Makefile @@ -26,6 +26,9 @@ all: @echo "Version: $$BAMTOOLS_VERSION" @echo "=========================================================" + mkdir -p $(BIN_DIR) + mkdir -p $(OBJ_DIR) + @for dir in $(SUBDIRS); do \ echo "- Building in $$dir"; \ $(MAKE) --no-print-directory -C $$dir; \ -- 2.39.5