From 1347f964eeaaf86bae8faf01924f097266d3d270 Mon Sep 17 00:00:00 2001 From: Tobias Rausch Date: Fri, 2 Dec 2022 14:36:12 +0100 Subject: [PATCH] autoreconf --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d681e8b..c5be38d 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ TARGETS = ${SUBMODULES} ${BUILT_PROGRAMS} all: $(TARGETS) .htslib: $(HTSLIBSOURCES) - if [ -r src/htslib/Makefile ]; then cd src/htslib && autoheader && autoconf && ./configure --disable-s3 --disable-gcs --disable-libcurl --disable-plugins && $(MAKE) && $(MAKE) lib-static && cd ../../ && touch .htslib; fi + if [ -r src/htslib/Makefile ]; then cd src/htslib && autoreconf -i && ./configure --disable-s3 --disable-gcs --disable-libcurl --disable-plugins && $(MAKE) && $(MAKE) lib-static && cd ../../ && touch .htslib; fi src/svprops: ${SUBMODULES} $(SOURCES) $(CXX) $(CXXFLAGS) $@.cpp -o $@ $(LDFLAGS)