Sha256: 7dd1df7f8af47fd8fd87976b7993532ee4b2f0e53c0a72bacf06ef086fa4311f
Contents?: true
Size: 395 Bytes
Versions: 2
Compression:
Stored size: 395 Bytes
Contents
CC= gcc CFLAGS= -g -Wall -O2 -m64 # comment out `-m64' for 32-bit compilation DFLAGS= -D_FILE_OFFSET_BITS=64 OBJS= bwt_gen.o QSufSort.o INCLUDES= VERSION= 0.1.0 LIBS= SUBDIRS= .SUFFIXES:.c .o .c.o: $(CC) -c $(CFLAGS) $(DFLAGS) $(INCLUDES) $< -o $@ lib:libbwtgen.a libbwtgen.a:$(OBJS) $(AR) -cru $@ $(OBJS) cleanlocal: rm -f gmon.out *.o a.out $(PROG) *~ *.a clean:cleanlocal
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bio-bwa-0.2.1 | ext/bwt_gen/Makefile |
bio-bwa-0.2.0 | ext/bwt_gen/Makefile |