Changeset 0d60c9d in git for doc/genMakefile.tcl
- Timestamp:
- Jul 4, 2013, 1:19:15 PM (11 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 5150e39
- Parents:
- af9008e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/genMakefile.tcl
raf9008e r0d60c9d 71 71 } 72 72 73 puts -nonewline "${dictVar} = $suffix"73 puts -nonewline "${dictVar} += $suffix" 74 74 puts [join $dictSrcFiles $suffix] 75 75 puts {} 76 76 77 puts -nonewline "${dictVar}_OBJ = $suffix"77 puts -nonewline "${dictVar}_OBJ += $suffix" 78 78 puts [join $dictObjFiles $suffix] 79 79 puts {} … … 133 133 } 134 134 135 puts -nonewline "TCL_OBJ = $suffix"135 puts -nonewline "TCL_OBJ += $suffix" 136 136 puts [join $srcObjFiles $suffix] 137 137 puts {} … … 147 147 148 148 foreach fileName $executable { 149 if {$fileName == "examples/DelphesProMC.cpp"} continue150 151 149 regsub {\.cpp} $fileName {} exeObjName 152 150 set exeObjName $prefix$exeObjName … … 224 222 ifneq ($(PYTHIA8),) 225 223 HAS_PYTHIA8 = true 226 CXXFLAGS += - DHAS_PYTHIA8 -I$(PYTHIA8)/include224 CXXFLAGS += -I$(PYTHIA8)/include 227 225 DELPHES_LIBS += -L$(PYTHIA8)/lib -lpythia8 -llhapdfdummy 228 226 else 229 227 ifneq ($(PYTHIA8DATA),) 230 228 HAS_PYTHIA8 = true 231 CXXFLAGS += - DHAS_PYTHIA8 -I$(PYTHIA8DATA)/../include229 CXXFLAGS += -I$(PYTHIA8DATA)/../include 232 230 DELPHES_LIBS += -L$(PYTHIA8DATA)/../lib -lpythia8 -llhapdfdummy 233 231 endif … … 267 265 puts {ifeq ($(HAS_PYTHIA8),true)} 268 266 executableDeps {readers/DelphesPythia8.cpp} 267 dictDeps {DELPHES_DICT} {modules/Pythia8LinkDef.h} 269 268 puts {endif} 270 269 puts {} 271 270 272 dictDeps {DELPHES_DICT} {classes/ *LinkDef.h} {modules/*LinkDef.h} {external/ExRootAnalysis/*LinkDef.h}273 274 dictDeps {DISPLAY_DICT} {display/ *LinkDef.h}271 dictDeps {DELPHES_DICT} {classes/ClassesLinkDef.h} {modules/ModulesLinkDef.h} {external/ExRootAnalysis/ExRootAnalysisLinkDef.h} 272 273 dictDeps {DISPLAY_DICT} {display/DisplayLinkDef.h} 275 274 276 275 sourceDeps {DELPHES} {classes/*.cc} {modules/*.cc} {external/ExRootAnalysis/*.cc} {external/fastjet/*.cc} {external/fastjet/tools/*.cc} {external/fastjet/plugins/*/*.cc} … … 366 365 @mkdir -p $(@D) 367 366 @echo ">> Generating $@" 368 @rootcint -f $@ -c $(CXXFLAGS)$<367 @rootcint -f $@ -c -Iexternal $< 369 368 @echo "#define private public" > $@.arch 370 369 @echo "#define protected public" >> $@.arch
Note:
See TracChangeset
for help on using the changeset viewer.