X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=makefile;fp=makefile;h=0000000000000000000000000000000000000000;hb=f23d86be251c79353f66701f10d69020845050c8;hp=8c88467a2348458d972a8d54706369fe87d3fbcf;hpb=a56dda3a95d2df268969bd3c2c994b5d2f020410;p=SXSI%2FTextCollection.git diff --git a/makefile b/makefile deleted file mode 100644 index 8c88467..0000000 --- a/makefile +++ /dev/null @@ -1,49 +0,0 @@ -CC = g++ -LIBCDSPATH = ../libcds -CPPFLAGS = -Wall -ansi -g -I$(LIBCDSPATH)/includes/ -O3 -DNDEBUG -#CPPFLAGS = -Wall -ansi -g -I$(LIBCDSPATH)/includes/ -LIBCDSA = $(LIBCDSPATH)/lib/libcds.a -LIBRLCSA = incbwt/rlcsa.a -LIBLZTRIE = lzindex/lztrie.a -LIBSWCSA = swcsa/swcsa.a - -dcover_obs = dcover/difference_cover.o - -TextCollection_obs = TextCollection.o TextCollectionBuilder.o FMIndexBuilder.o RLCSABuilder.o FMIndex.o Tools.o \ - TextStorage.o Query.o EditDistance.o ResultSet.o ${LIBRLCSA} ${LIBCDSA} ${LIBLZTRIE} ${LIBSWCSA} -TCDebug_obs = bittree.o rbtree.o dynFMI.o - -all: testTextCollection - -testTextCollection: testTextCollection.o $(TextCollection_obs) $(TCDebug_obs) HeapProfiler.o - $(CC) -o testTextCollection testTextCollection.o $(TextCollection_obs) $(TCDebug_obs) HeapProfiler.o - -timeTextCollection: timeTextCollection.o $(TextCollection_obs) $(TCDebug_obs) - $(CC) -o timeTextCollection timeTextCollection.o $(TextCollection_obs) $(TCDebug_obs) - -test2dRange: test2dRange.o ${LIBCDSA} - $(CC) -o test2dRange test2dRange.o ${LIBCDSA} - -incbwt/rlcsa.a: - @make -C incbwt - -lzindex/lztrie.a: - @make -C lzindex - -swcsa/swcsa.a: - @make -C swcsa - -clean: - @make clean -C incbwt - @make clean -C lzindex - @make clean -C swcsa - rm -f core *.o *~ testTextCollection timeTextCollection dcover/*.o dcover/*~ - -shallow_clean: - rm -f core *.o *~ testTextCollection timeTextCollection - -depend: - @make depend -C incbwt - $(CC) -MM *.cpp > dependencies.mk - -include dependencies.mk