X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Makefile;h=1dc3f7b1b1ed51862f08967e947e2bfc38eededf;hb=c66ba836246a1eada3557a5c8dcc9d3558ed093b;hp=185bcad875aa5ea67f5440296728c3a330b30606;hpb=f8d828f713203226f9cd58db046c7b767d4b78ad;p=bamtools.git diff --git a/Makefile b/Makefile index 185bcad..1dc3f7b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,8 @@ # ========================== # BamTools Makefile # (c) 2010 Derek Barnett +# +# top-level # ========================== # define main directories @@ -19,16 +21,18 @@ export BAMTOOLS_VERSION = 0.7.0812 # define source subdirectories SUBDIRS = $(SRC_DIR)/api \ $(SRC_DIR)/utils \ - $(SRC_DIR)/toolkit + $(SRC_DIR)/third_party \ + $(SRC_DIR)/toolkit all: @echo "Building BamTools:" @echo "Version: $$BAMTOOLS_VERSION" @echo "=========================================================" - - mkdir -p $(BIN_DIR) - mkdir -p $(OBJ_DIR) - + @echo "" + @echo "- Creating target directories" + @mkdir -p $(BIN_DIR) + @mkdir -p $(OBJ_DIR) + @echo "" @for dir in $(SUBDIRS); do \ echo "- Building in $$dir"; \ $(MAKE) --no-print-directory -C $$dir; \