Skip to content

Commit

Permalink
Changing makefile, again, and bumping version
Browse files Browse the repository at this point in the history
  • Loading branch information
mchaisso committed Jun 12, 2023
1 parent 9fb3345 commit 1ea1a73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PROG = vamos
LIBS = -lhts -lz -lpthread
#ABPOA_LIBS = -lm -lz -lpthread

ifeq ($(CC),)
ifeq ($(CC),"cc")
CC=gcc
endif

Expand Down Expand Up @@ -44,7 +44,7 @@ all: $(PROG)


$(ABPOA_DIR)/lib/libabpoa.a:
cd $(ABPOA_DIR) && make sse2=TRUE CC=\"$(CC)\"
cd $(ABPOA_DIR) && make sse2=TRUE

vamos: main.o io.o vcf.o vntr.o acc_lookup_table.o phase.o msa.o $(ABPOA_DIR)/lib/libabpoa.a
$(CXX) $(CFLAGS) -o $@ $^ -L $(CONDA_PREFIX)/lib $(LIBS) -L $(ABPOA_DIR)/lib -labpoa -lrt
Expand Down
2 changes: 1 addition & 1 deletion src/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class IO
IO ()
{
version = (char *) malloc(7);
strcpy(version, "1.2.2");
strcpy(version, "1.2.3");
region_and_motifs = NULL;
input_bam = NULL;
vntr_bed = NULL;
Expand Down

0 comments on commit 1ea1a73

Please sign in to comment.