remove a useless file

This commit is contained in:
Heng Li 2011-11-12 20:06:37 -05:00
parent 770a5f2ae0
commit 9f2c77880d
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
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) -scru $@ $(OBJS)
cleanlocal:
rm -f gmon.out *.o a.out $(PROG) *~ *.a
clean:cleanlocal