remove a useless file
This commit is contained in:
parent
770a5f2ae0
commit
9f2c77880d
|
|
@ -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
|
||||
Loading…
Reference in New Issue