X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;ds=sidebyside;f=makefile;h=04c5f6454ed52457bee2b298524f5b96529f46eb;hb=95fded64d90aca79f7179f147a5184e9ba3176af;hp=36094fe6ac87fbe2e3f783e04da5138c71a729d5;hpb=dbd62fe27e80414b4cf4fbf512ad1910916e6967;p=SXSI%2FTextCollection.git diff --git a/makefile b/makefile index 36094fe..04c5f64 100644 --- a/makefile +++ b/makefile @@ -3,13 +3,18 @@ LIBCDSPATH = ../libcds CPPFLAGS = -Wall -ansi -g -O2 -I$(LIBCDSPATH)/includes/ -DNDEBUG LIBCDSA = $(LIBCDSPATH)/lib/libcds.a -testTextCollection_obs = testTextCollection5.o TextCollection.o CSA.o Tools.o BitRank.o bittree.o rbtree.o dynFMI.o RLWaveletTree.o GapEncode.o BSGAP.o ${LIBCDSA} +testTextCollection_obs = testTextCollection.o TextCollection.o CSA.o Tools.o BitRank.o bittree.o rbtree.o dynFMI.o RLWaveletTree.o GapEncode.o BSGAP.o ${LIBCDSA} + +timeTextCollection_obs = timeTextCollection.o TextCollection.o CSA.o Tools.o BitRank.o bittree.o rbtree.o dynFMI.o RLWaveletTree.o GapEncode.o BSGAP.o ${LIBCDSA} + all: $(testTextCollection_obs) testTextCollection: $(testTextCollection_obs) HeapProfiler.o $(CC) -o testTextCollection $(testTextCollection_obs) HeapProfiler.o +timeTextCollection: $(timeTextCollection_obs) + $(CC) -o timeTextCollection $(timeTextCollection_obs) clean: rm -f core *.o *~ testTextCollection