htslib_vars.mk 985 B

1234567891011121314151617181920
  1. # Makefile variables useful for third-party code using htslib's public API.
  2. #
  3. # Copyright (C) 2013-2014 Genome Research Ltd.
  4. #
  5. # Author: John Marshall <jm18@sanger.ac.uk>
  6. # These variables can be used to express dependencies on htslib headers.
  7. # See htslib.mk for details.
  8. htslib_bgzf_h = $(HTSPREFIX)htslib/bgzf.h
  9. htslib_faidx_h = $(HTSPREFIX)htslib/faidx.h
  10. htslib_hfile_h = $(HTSPREFIX)htslib/hfile.h $(htslib_hts_defs_h)
  11. htslib_hts_h = $(HTSPREFIX)htslib/hts.h
  12. htslib_hts_defs_h = $(HTSPREFIX)htslib/hts_defs.h
  13. htslib_sam_h = $(HTSPREFIX)htslib/sam.h $(htslib_hts_h)
  14. htslib_synced_bcf_reader_h = $(HTSPREFIX)htslib/synced_bcf_reader.h $(htslib_hts_h) $(htslib_vcf_h) $(htslib_tbx_h)
  15. htslib_tbx_h = $(HTSPREFIX)htslib/tbx.h $(htslib_hts_h)
  16. htslib_vcf_h = $(HTSPREFIX)htslib/vcf.h $(htslib_hts_h) $(HTSPREFIX)htslib/kstring.h
  17. htslib_vcf_sweep_h = $(HTSPREFIX)htslib/vcf_sweep.h $(htslib_hts_h) $(htslib_vcf_h)
  18. htslib_vcfutils_h = $(HTSPREFIX)htslib/vcfutils.h $(htslib_vcf_h)