diff --git a/Makefile b/Makefile index ba5547e04193a1df1561a2857f744e0b8dde2810..7867087a7d5ba733c09feb5f40e12df8c615741d 100644 --- a/Makefile +++ b/Makefile @@ -79,7 +79,7 @@ UTIL_SUBDIRS = $(SRC_DIR)/utils/bedFile \ BUILT_OBJECTS = $(OBJ_DIR)/*.o -all: print_banner $(OBJ_DIR) $(BIN_DIR) $(UTIL_SUBDIRS) $(SUBDIRS) +all: print_banner $(OBJ_DIR) $(BIN_DIR) version $(UTIL_SUBDIRS) $(SUBDIRS) @echo "- Building main bedtools binary." @$(CXX) $(CXXFLAGS) -c src/bedtools.cpp -o obj/bedtools.o -I$(UTIL_DIR)/version/ @$(CXX) $(LDFLAGS) $(CXXFLAGS) -o $(BIN_DIR)/bedtools $(BUILT_OBJECTS) -L$(UTIL_DIR)/BamTools/lib/ -lbamtools $(LIBS) @@ -128,7 +128,7 @@ test: all .PHONY: test -#.PHONY: gitversion +.PHONY: version version: @( BEDTOOLS_VERSION="" ; \ [ -e "$(VERSION_FILE)" ] && BEDTOOLS_VERSION=$$(grep "define VERSION_GIT " "$(VERSION_FILE)" | cut -f3 -d" " | sed 's/"//g') ; \ diff --git a/src/utils/version/version_git.h b/src/utils/version/version_git.h deleted file mode 100644 index b09c1bb887e77d5bcb2139ba582a1e59a977dbcc..0000000000000000000000000000000000000000 --- a/src/utils/version/version_git.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef VERSION_GIT_H -#define VERSION_GIT_H - -#define VERSION_GIT "v2.16.0" - -#endif /* VERSION_GIT_H */