X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Makefile;h=86612c1b524b7185d9714b839067875b8bc85aa7;hb=6fe3ffa44a450bd83f6df6b6ca4a200b97a47936;hp=25897dbf2f1dfe9a5ec690b5883aed8e606d140a;hpb=63e4e54189bc9e7f43852edf865f95e713b93dc4;p=samtools.git diff --git a/Makefile b/Makefile index 25897db..86612c1 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,17 @@ CC= gcc CXX= g++ -CFLAGS= -g -Wall -O2 -m64 #-arch ppc +CFLAGS= -g -Wall -O2 #-m64 #-arch ppc CXXFLAGS= $(CFLAGS) -DFLAGS= -D_IOLIB=2 -D_FILE_OFFSET_BITS=64 #-D_NO_RAZF #-D_NO_CURSES +### For ncurses: please apply `-D_NO_CURSES' if you do not have ncurses installed +DFLAGS= -D_IOLIB=2 -D_FILE_OFFSET_BITS=64 #-D_NO_CURSES OBJS= bam.o bam_import.o bam_pileup.o bam_lpileup.o bam_sort.o bam_index.o \ razf.o bgzf.o faidx.o bam_tview.o bam_maqcns.o bam_aux.o bam_plcmd.o \ - bam_mate.o bam_rmdup.o glf.o bam_stat.o kstring.o bam_md.o + bam_mate.o bam_rmdup.o glf.o bam_stat.o kstring.o bam_md.o sam.o sam_view.o \ + bam_rmdupse.o PROG= razip bgzip samtools -INCLUDES= -LIBS= -lm -lz -SUBDIRS= . misc +INCLUDES= -Izlib +LIBS= -lm -Lzlib -lz +SUBDIRS= zlib . misc .SUFFIXES:.c .o @@ -21,7 +23,7 @@ all-recur lib-recur clean-recur cleanlocal-recur install-recur: wdir=`pwd`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ cd $$subdir; \ - $(MAKE) CC="$(CC)" CXX="$(CXX)" DFLAGS="$(DFLAGS)" CFLAGS="$(CFLAGS)" \ + $(MAKE) -f Makefile CC="$(CC)" CXX="$(CXX)" DFLAGS="$(DFLAGS)" CFLAGS="$(CFLAGS)" \ INCLUDES="$(INCLUDES)" LIBS="$(LIBS)" $$target || exit 1; \ cd $$wdir; \ done; @@ -33,6 +35,7 @@ lib:libbam.a libbam.a:$(OBJS) $(AR) -cru $@ $(OBJS) +### For ncurses: comment out `-lcurses' if you do not have ncurses installed samtools:lib bamtk.o $(CC) $(CFLAGS) -o $@ bamtk.o $(LIBS) -L. -lbam -lcurses @@ -43,7 +46,8 @@ bgzip:bgzip.o bgzf.o $(CC) $(CFLAGS) -o $@ bgzf.o bgzip.o $(LIBS) razip.o:razf.h -bam.o:bam.h razf.h bam_endian.h +bam.o:bam.h razf.h bam_endian.h kstring.h +sam.o:sam.h bam.h bam_import.o:bam.h kseq.h khash.h razf.h bam_pileup.o:bam.h razf.h ksort.h bam_plcmd.o:bam.h faidx.h bam_maqcns.h glf.h