I run make all and get this
g++ -O3 -I. fastq-lib.cpp tidx/tidx-lib.cpp -o varcall varcall.cpp -lgsl -lgslcblas
tidx/tidx-lib.cpp: In member function ‘void tidx::dump(FILE*)’:
tidx/tidx-lib.cpp:265:126: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 6 has type ‘std::vector<long int>::size_type {aka unsigned int}’ [-Wformat=]
fprintf(fh, "%s\t%d\t%d\t%ld\t%ld\n", it->first.c_str(), van[i].beg, van[i].end, van[i].pos.size(), van[i].pos[0]);
^
tidx/tidx-lib.cpp: In member function ‘void tidx::build(const char*, const char*, int, int, int, int, char, bool)’:
tidx/tidx-lib.cpp:333:85: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 4 has type ‘std::vector<annot>::size_type {aka unsigned int}’ [-Wformat=]
if (debug) fprintf(stderr, "frag %s : %ld ->", it->first.c_str(), van.size());
^
tidx/tidx-lib.cpp:401:56: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 3 has type ‘std::vector<annot>::size_type {aka unsigned int}’ [-Wformat=]
if (debug) fprintf(stderr, " %ld\n", van.size());
^
varcall.cpp:33:29: fatal error: gsl/gsl_randist.h: No such file or directory
#include <gsl/gsl_randist.h>
^
compilation terminated.
make: *** [varcall] Error 1
what do i do