Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed a compiler error #426

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
add missed header files to distribution
  • Loading branch information
kemin711 committed Jun 22, 2017
commit 10ff15a28c2138b6e259baf386614000f44a092f
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ CSCOPE = cscope
DIST_SUBDIRS = $(SUBDIRS)
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \
COPYING ChangeLog INSTALL NEWS README ar-lib compile \
config.guess config.sub depcomp install-sh ltmain.sh missing
config.guess config.sub install-sh ltmain.sh missing
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# for building both the bwa library and the binary

libheaders = utils.h kstring.h ksw.h bwt.h bntseq.h bwa.h bwamem.h malloc_wrap.h QSufSort.h rope.h rle.h
libheaders = utils.h kstring.h ksw.h bwt.h bntseq.h bwa.h bwamem.h malloc_wrap.h QSufSort.h rope.h rle.h ksort.h kbtree.h khash.h kvec.h bwtsw2.h
libsources= utils.c kthread.c kstring.c ksw.c bwt.c bntseq.c bwa.c bwamem.c bwamem_pair.c bwamem_extra.c malloc_wrap.c QSufSort.c bwt_gen.c rope.c rle.c is.c bwtindex.c

appsources = bwashm.c bwase.c bwaseqio.c bwtgap.c bwtaln.c bamlite.c bwape.c kopen.c pemerge.c maxk.c bwtsw2_core.c bwtsw2_main.c bwtsw2_aux.c bwt_lite.c bwtsw2_chain.c fastmap.c bwtsw2_pair.c
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
libheaders = utils.h kstring.h ksw.h bwt.h bntseq.h bwa.h bwamem.h malloc_wrap.h QSufSort.h rope.h rle.h
libheaders = utils.h kstring.h ksw.h bwt.h bntseq.h bwa.h bwamem.h malloc_wrap.h QSufSort.h rope.h rle.h ksort.h kbtree.h khash.h kvec.h bwtsw2.h
libsources = utils.c kthread.c kstring.c ksw.c bwt.c bntseq.c bwa.c bwamem.c bwamem_pair.c bwamem_extra.c malloc_wrap.c QSufSort.c bwt_gen.c rope.c rle.c is.c bwtindex.c
appsources = bwashm.c bwase.c bwaseqio.c bwtgap.c bwtaln.c bamlite.c bwape.c kopen.c pemerge.c maxk.c bwtsw2_core.c bwtsw2_main.c bwtsw2_aux.c bwt_lite.c bwtsw2_chain.c fastmap.c bwtsw2_pair.c
appheaders = bwase.h bwtgap.h bwtaln.h bamlite.h bwt_lite.h
Expand Down