From dc7f2b88d4b7079feca3299a4f42ab4c76dda758 Mon Sep 17 00:00:00 2001 From: Paul Russo <russo@fnal.gov> Date: Wed, 26 Mar 2008 22:42:48 +0000 Subject: [PATCH] A few changes to use libCint.so instead of libcint.so. Also one change so that we use -I<sysdir>/cint/<coreversion>/inc instead of: -I<sysdir>/<coreversion>/inc With these changes I am able to run the cint tests in ${ROOTSYS}/cint/test directly. -- Paul Russo git-svn-id: http://root.cern.ch/svn/root/trunk@22859 27541ba8-7e3a-0410-8455-c3a389f83636 --- cint/tool/makecint.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cint/tool/makecint.cxx b/cint/tool/makecint.cxx index 8e3a32a6c39..22a3b29152f 100644 --- a/cint/tool/makecint.cxx +++ b/cint/tool/makecint.cxx @@ -504,16 +504,16 @@ void G__outputmakefile(int argc,char **argv) << "CINTINCDIRU := " << G__CFG_INCLUDEDIRCINT << std::endl << "CINTINCDIRW := " << G__CFG_INCLUDEDIRCINT << std::endl #else - << "CINTINCDIRU := $(CINTSYSDIRU)/" << G__CFG_COREVERSION << "/inc" << std::endl - << "CINTINCDIRW := $(CINTSYSDIRW)/" << G__CFG_COREVERSION << "/inc" << std::endl + << "CINTINCDIRU := $(CINTSYSDIRU)cint/" << G__CFG_COREVERSION << "/inc" << std::endl + << "CINTINCDIRW := $(CINTSYSDIRW)cint/" << G__CFG_COREVERSION << "/inc" << std::endl #endif #ifdef G__CFG_LIBDIR - << "CINTLIB := " << G__CFG_LIBDIR << "/libcint" << G__CFG_SOEXT << std::endl; + << "CINTLIB := " << G__CFG_LIBDIR << "/libCint" << G__CFG_SOEXT << std::endl; #else - << "CINTLIB := $(CINTSYSDIRU)/lib/libcint" << G__CFG_SOEXT << std::endl; + << "CINTLIB := $(CINTSYSDIRU)/lib/libCint" << G__CFG_SOEXT << std::endl; #endif if (!strcmp(G__CFG_COREVERSION,"cint7")) - out << "CINTLIB := $(CINTLIB) $(subst libcint,libReflex,$(CINTLIB))" << std::endl; + out << "CINTLIB := $(CINTLIB) $(subst libCint,libReflex,$(CINTLIB))" << std::endl; out << "IPATH := " << G__IPATH; out << std::endl; @@ -556,7 +556,7 @@ void G__outputmakefile(int argc,char **argv) out << std::endl; out << "LIBS := "; - out << G__CFG_LIBP << "$(CINTSYSDIRW)/lib $(subst @imp@,cint," << G__CFG_LIBL << ") "; + out << G__CFG_LIBP << "$(CINTSYSDIRW)/lib $(subst @imp@,Cint," << G__CFG_LIBL << ") "; if (!strcmp(G__CFG_COREVERSION,"cint7")) out << " $(subst @imp@,Reflex," << G__CFG_LIBL << ") "; out << G__CFG_DEFAULTLIBS << " " << G__LIB << " " << std::endl -- GitLab