From 17b57a9af00f1887380617e1f4a61e22865389a8 Mon Sep 17 00:00:00 2001 From: Heng Li Date: Fri, 7 Apr 2017 15:43:55 -0400 Subject: [PATCH] forgot to link misc.o --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1cb0dcc..25df3ff 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CC= gcc CFLAGS= -g -Wall -O2 -Wc++-compat -Wno-unused-function CPPFLAGS= INCLUDES= -I. -OBJS= kalloc.o kthread.o bseq.o sketch.o sdust.o index.o +OBJS= kalloc.o kthread.o misc.o bseq.o sketch.o sdust.o index.o PROG= minimap2 PROG_EXTRA= sdust LIBS= -lm -lz -lpthread @@ -36,6 +36,7 @@ depend: bseq.o: bseq.h kseq.h index.o: kthread.h bseq.h minimap.h kvec.h kalloc.h khash.h kalloc.o: kalloc.h +main.o: bseq.h minimap.h misc.o: minimap.h ksort.h sdust.o: kalloc.h kdq.h kvec.h sdust.h sketch.o: kvec.h kalloc.h minimap.h