X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=Makefile;h=9d2f39a69cf450d8daa69e90550923c4255bcb07;hb=d2cbab156c2b74051cf831dc3ac634aedc8f2c2f;hp=51eac54b3bdaf5e3e99991cc7e81591942b3b71f;hpb=dc91851aaeac91a71eba2c266d0227adea0c5815;p=SXSI%2Fxpathcomp.git diff --git a/Makefile b/Makefile index 51eac54..9d2f39a 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -INLINE=10 +INLINE=1000 DEBUG=false PROFILE=true VERBOSE=false @@ -48,7 +48,7 @@ OCAMLOPT = ocamlopt -g -cc "$(CXX)" SYNT_DEBUG = -ppopt -DDEBUG else CXX = g++ -OCAMLOPT = ocamlopt -g -cc "$(CXX)" -ccopt -O3 -ccopt -std=c++0x -noassert -inline $(INLINE) +OCAMLOPT = ocamlopt -cc "$(CXX)" -ccopt -O3 -ccopt -std=c++0x -noassert -inline $(INLINE) endif ifeq ($(PROFILE), true) SYNT_PROF = $(SYNT_DEBUG) -ppopt -DPROFILE @@ -101,20 +101,24 @@ libcamlshredder.a: $(CXXOBJECTS) XMLTree/XMLTree.a @echo [LIB] $@ $(HIDE) mkdir -p .libs/ $(HIDE) cd .libs/ && ar x ../XMLTree/XMLTree.a - $(HIDE) $(OCAMLMKLIB) -o camlshredder -custom $(CXXOBJECTS) ./.libs/*.o $(LIBS) + $(HIDE) $(OCAMLMKLIB) -o camlshredder -custom $(CXXOBJECTS) .libs/*.o $(LIBS) $(HIDE) rm -rf .libs clean: @echo [CLEAN] - $(HIDE) rm -f *~ *.cm* *.[oa] *.so main .libs + $(HIDE) rm -f *~ *.cm* *.[oa] *.so main + $(HIDE) rm -rf .libs -testSuccint: $(CXXOBJECTS) XMLTree/XMLTree.a +timeXMLTree: $(CXXOBJECTS) XMLTree/XMLTree.a timeXMLTree.cpp mkdir -p .libs/ cd .libs/ && ar x ../XMLTree/XMLTree.a - $(CXX) -o testSuccint $(CXXFLAGS) $(CXXINCLUDES) XMLDocShredder.o \ -SXSIStorageInterface.o StorageInterface.o ./.libs/*.o \ -$(LIBS) testSuccint.cpp + $(CXX) -o timeXMLTree $(CXXFLAGS) $(CXXINCLUDES) XMLDocShredder.o \ + SXSIStorageInterface.o StorageInterface.o ./.libs/*.o \ + $(LIBS) timeXMLTree.cpp + $(CXX) -o myTimeXMLTree $(CXXFLAGS) $(CXXINCLUDES) XMLDocShredder.o \ + SXSIStorageInterface.o StorageInterface.o ./.libs/*.o \ + $(LIBS) myTimeXMLTree.cpp rm -rf .libs SXSIStorageInterface.o: SXSIStorageInterface.h SXSIStorageInterface.cpp StorageInterface.h