Removed old makefile
authorkim <kim@3cdefd35-fc62-479d-8e8d-bae585ffb9ca>
Fri, 18 Feb 2011 13:04:58 +0000 (13:04 +0000)
committerkim <kim@3cdefd35-fc62-479d-8e8d-bae585ffb9ca>
Fri, 18 Feb 2011 13:04:58 +0000 (13:04 +0000)
git-svn-id: svn+ssh://idea.nguyen.vg/svn/sxsi/trunk/XMLTree@1012 3cdefd35-fc62-479d-8e8d-bae585ffb9ca

makefile [deleted file]

diff --git a/makefile b/makefile
deleted file mode 100644 (file)
index f486f14..0000000
--- a/makefile
+++ /dev/null
@@ -1,47 +0,0 @@
-CFLAGS= -O3 -DNDEBUG -I./libcds/includes/ -fno-PIC -I.\r
-FLAGS= -std=c++0x $(CFLAGS)\r
-\r
-\r
-LIBCDS_A=libcds/lib/libcds.a \r
-OBJECTS_TCO= TextCollection/TextCollection.o TextCollection/TextCollectionBuilder.o TextCollection/RLCSABuilder.o \\r
-             TextCollection/FMIndex.o TextCollection/FMIndexBuilder.o TextCollection/Tools.o \\r
-             TextCollection/TextStorage.o TextCollection/Query.o TextCollection/EditDistance.o TextCollection/ResultSet.o\r
-\r
-LIBRLCSA_TCA=TextCollection/incbwt/rlcsa.a\r
-LIBLZTRIE_TCA=TextCollection/lzindex/lztrie.a\r
-LIBSWCSA_TCA=TextCollection/swcsa/swcsa.a\r
-\r
-all: libcds text_collection XMLTree\r
-\r
-XMLTree: XMLTree.o XMLTreeBuilder.o bp.o darray.o bpcore.o\\r
- $(LIBCDS_A) $(OBJECTS_TCO) $(LIBRLCSA_TCA) $(LIBLZTRIE_TCA) $(LIBSWCSA_TCA)\r
-       cp libcds/lib/libcds.a XMLTree.a\r
-       rm -rf .objs\r
-       mkdir .objs\r
-       cd .objs; ar x ../$(LIBRLCSA_TCA); ar x ../$(LIBLZTRIE_TCA); ar x ../$(LIBSWCSA_TCA)\r
-       ar rvcs XMLTree.a XMLTree.o XMLTreeBuilder.o  bp.o darray.o bpcore.o $(OBJECTS_TCO) .objs/*.o\r
-       rm -rf .objs\r
-\r
-XMLTree.o: bp.c bp.h bpcore.c XMLTree.cpp XMLTree.h basics.h\r
-       g++ $(FLAGS) -c XMLTree.cpp\r
-\r
-bp.o: bp.c bpcore.c darray.c bp.h darray.h\r
-       g++ $(FLAGS) -c bp.c\r
-\r
-darray.o: darray.c darray.h bpcore.c\r
-       g++ $(FLAGS) -c darray.c\r
-\r
-bpcore.o: bpcore.c\r
-       g++ $(FLAGS) -c bpcore.c\r
-\r
-XMLTreeBuilder.o: XMLTree.h XMLTreeBuilder.h XMLTreeBuilder.cpp basics.h\r
-       g++ $(FLAGS) -c XMLTreeBuilder.cpp\r
-\r
-text_collection:\r
-       make -C TextCollection/\r
-\r
-libcds:\r
-       make -C libcds/\r
-\r
-clean:\r
-       rm -f *.[oa]\r