Changeset e7e90df in git for doc/genMakefile.tcl
- Timestamp:
- Dec 9, 2014, 1:26:26 PM (10 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 49234af
- Parents:
- 01f457a (diff), f6b6ee7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/genMakefile.tcl
r01f457a re7e90df 208 208 CXXFLAGS += $(ROOTCFLAGS) -Wno-write-strings -D_FILE_OFFSET_BITS=64 -DDROP_CGAL -I. -Iexternal -Iexternal/tcl 209 209 DELPHES_LIBS = $(shell $(RC) --libs) -lEG $(SYSLIBS) 210 DISPLAY_LIBS = $(shell $(RC) --evelibs) $(SYSLIBS)210 DISPLAY_LIBS = $(shell $(RC) --evelibs) -lGuiHtml $(SYSLIBS) 211 211 212 212 ifneq ($(CMSSW_FWLITE_INCLUDE_PATH),) 213 213 HAS_CMSSW = true 214 214 CXXFLAGS += -std=c++0x -I$(subst :, -I,$(CMSSW_FWLITE_INCLUDE_PATH)) 215 DELPHES_LIBS += -L$(subst include,lib,$(subst :, -L,$(CMSSW_FWLITE_INCLUDE_PATH)))215 OPT_LIBS += -L$(subst include,lib,$(subst :, -L,$(CMSSW_FWLITE_INCLUDE_PATH))) 216 216 ifneq ($(CMSSW_RELEASE_BASE),) 217 217 CXXFLAGS += -I$(CMSSW_RELEASE_BASE)/src 218 218 endif 219 219 ifneq ($(LD_LIBRARY_PATH),) 220 DELPHES_LIBS += -L$(subst include,lib,$(subst :, -L,$(LD_LIBRARY_PATH)))221 endif 222 DELPHES_LIBS += -lGenVector -lFWCoreFWLite -lDataFormatsFWLite -lDataFormatsPatCandidates -lDataFormatsLuminosity -lSimDataFormatsGeneratorProducts -lCommonToolsUtils220 OPT_LIBS += -L$(subst include,lib,$(subst :, -L,$(LD_LIBRARY_PATH))) 221 endif 222 OPT_LIBS += -lGenVector -lFWCoreFWLite -lDataFormatsFWLite -lDataFormatsPatCandidates -lDataFormatsLuminosity -lSimDataFormatsGeneratorProducts -lCommonToolsUtils 223 223 endif 224 224 225 225 ifneq ($(PROMC),) 226 226 HAS_PROMC = true 227 CXXFLAGS += -I$(PROMC)/include 228 DELPHES_LIBS += -L$(PROMC)/lib-lprotoc -lprotobuf -lprotobuf-lite -lcbook -lz227 CXXFLAGS += -I$(PROMC)/include -I$(PROMC)/src 228 OPT_LIBS += -L$(PROMC)/lib -lpromc -lprotoc -lprotobuf -lprotobuf-lite -lcbook -lz 229 229 endif 230 230 … … 232 232 HAS_PYTHIA8 = true 233 233 CXXFLAGS += -I$(PYTHIA8)/include 234 DELPHES_LIBS += -L$(PYTHIA8)/lib -lpythia8 -lLHAPDF -lgfortran -lz234 OPT_LIBS += -L$(PYTHIA8)/lib -lpythia8 -lLHAPDF -lgfortran -lz 235 235 else 236 236 ifneq ($(PYTHIA8DATA),) 237 237 HAS_PYTHIA8 = true 238 238 CXXFLAGS += -I$(PYTHIA8DATA)/../include 239 DELPHES_LIBS += -L$(PYTHIA8DATA)/../lib -lpythia8 -lLHAPDF -lgfortran -lz 240 endif 241 endif 239 OPT_LIBS += -L$(PYTHIA8DATA)/../lib -lpythia8 -lLHAPDF -lgfortran -lz 240 endif 241 endif 242 243 DELPHES_LIBS += $(OPT_LIBS) 244 DISPLAY_LIBS += $(OPT_LIBS) 242 245 243 246 ### … … 268 271 puts {ifeq ($(HAS_PROMC),true)} 269 272 executableDeps {readers/DelphesProMC.cpp} 270 sourceDeps {DELPHES} {external/ProMC/*.cc}271 273 puts {endif} 272 274 puts {}
Note:
See TracChangeset
for help on using the changeset viewer.