From: Derek Date: Wed, 18 Aug 2010 19:28:51 +0000 (-0400) Subject: Modified Makefile to ensure creation of bin/ and obj/ directories X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f8d828f713203226f9cd58db046c7b767d4b78ad;p=bamtools.git Modified Makefile to ensure creation of bin/ and obj/ directories --- 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; \