Changes in Makefile [5b5a56b:6427420] in git
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r5b5a56b r6427420 17 17 CXXFLAGS += $(ROOTCFLAGS) -Wno-write-strings -D_FILE_OFFSET_BITS=64 -DDROP_CGAL -I. -Iexternal -Iexternal/tcl 18 18 DELPHES_LIBS = $(shell $(RC) --libs) -lEG $(SYSLIBS) 19 DISPLAY_LIBS = $(shell $(RC) --evelibs) $(SYSLIBS)19 DISPLAY_LIBS = $(shell $(RC) --evelibs) -lGuiHtml $(SYSLIBS) 20 20 21 21 ifneq ($(CMSSW_FWLITE_INCLUDE_PATH),) 22 22 HAS_CMSSW = true 23 23 CXXFLAGS += -std=c++0x -I$(subst :, -I,$(CMSSW_FWLITE_INCLUDE_PATH)) 24 DELPHES_LIBS += -L$(subst include,lib,$(subst :, -L,$(CMSSW_FWLITE_INCLUDE_PATH)))24 OPT_LIBS += -L$(subst include,lib,$(subst :, -L,$(CMSSW_FWLITE_INCLUDE_PATH))) 25 25 ifneq ($(CMSSW_RELEASE_BASE),) 26 26 CXXFLAGS += -I$(CMSSW_RELEASE_BASE)/src 27 27 endif 28 28 ifneq ($(LD_LIBRARY_PATH),) 29 DELPHES_LIBS += -L$(subst include,lib,$(subst :, -L,$(LD_LIBRARY_PATH)))30 endif 31 DELPHES_LIBS += -lGenVector -lFWCoreFWLite -lDataFormatsFWLite -lDataFormatsPatCandidates -lDataFormatsLuminosity -lSimDataFormatsGeneratorProducts -lCommonToolsUtils29 OPT_LIBS += -L$(subst include,lib,$(subst :, -L,$(LD_LIBRARY_PATH))) 30 endif 31 OPT_LIBS += -lGenVector -lFWCoreFWLite -lDataFormatsFWLite -lDataFormatsPatCandidates -lDataFormatsLuminosity -lSimDataFormatsGeneratorProducts -lCommonToolsUtils 32 32 endif 33 33 34 34 ifneq ($(PROMC),) 35 35 HAS_PROMC = true 36 CXXFLAGS += -I$(PROMC)/include 37 DELPHES_LIBS += -L$(PROMC)/lib-lprotoc -lprotobuf -lprotobuf-lite -lcbook -lz36 CXXFLAGS += -I$(PROMC)/include -I$(PROMC)/src 37 OPT_LIBS += -L$(PROMC)/lib -lpromc -lprotoc -lprotobuf -lprotobuf-lite -lcbook -lz 38 38 endif 39 39 … … 41 41 HAS_PYTHIA8 = true 42 42 CXXFLAGS += -I$(PYTHIA8)/include 43 DELPHES_LIBS += -L$(PYTHIA8)/lib -lpythia8 -lLHAPDF -lgfortran -lz43 OPT_LIBS += -L$(PYTHIA8)/lib -lpythia8 -lLHAPDF -lgfortran -lz 44 44 else 45 45 ifneq ($(PYTHIA8DATA),) 46 46 HAS_PYTHIA8 = true 47 47 CXXFLAGS += -I$(PYTHIA8DATA)/../include 48 DELPHES_LIBS += -L$(PYTHIA8DATA)/../lib -lpythia8 -lLHAPDF -lgfortran -lz 49 endif 50 endif 48 OPT_LIBS += -L$(PYTHIA8DATA)/../lib -lpythia8 -lLHAPDF -lgfortran -lz 49 endif 50 endif 51 52 DELPHES_LIBS += $(OPT_LIBS) 53 DISPLAY_LIBS += $(OPT_LIBS) 51 54 52 55 ### … … 238 241 external/ExRootAnalysis/ExRootTreeWriter.h \ 239 242 external/ExRootAnalysis/ExRootTreeBranch.h \ 240 external/ExRootAnalysis/ExRootProgressBar.h \ 241 external/ProMC/ProMCBook.h 243 external/ExRootAnalysis/ExRootProgressBar.h 242 244 EXECUTABLE += \ 243 245 DelphesProMC$(ExeSuf) … … 245 247 EXECUTABLE_OBJ += \ 246 248 tmp/readers/DelphesProMC.$(ObjSuf) 247 248 tmp/external/ProMC/ProMCBook.$(ObjSuf): \249 external/ProMC/ProMCBook.$(SrcSuf)250 tmp/external/ProMC/ProMC.pb.$(ObjSuf): \251 external/ProMC/ProMC.pb.$(SrcSuf)252 tmp/external/ProMC/ProMCStat.pb.$(ObjSuf): \253 external/ProMC/ProMCStat.pb.$(SrcSuf)254 tmp/external/ProMC/ProMCHeader.pb.$(ObjSuf): \255 external/ProMC/ProMCHeader.pb.$(SrcSuf)256 tmp/external/ProMC/ProMCDescription.pb.$(ObjSuf): \257 external/ProMC/ProMCDescription.pb.$(SrcSuf)258 DELPHES_OBJ += \259 tmp/external/ProMC/ProMCBook.$(ObjSuf) \260 tmp/external/ProMC/ProMC.pb.$(ObjSuf) \261 tmp/external/ProMC/ProMCStat.pb.$(ObjSuf) \262 tmp/external/ProMC/ProMCHeader.pb.$(ObjSuf) \263 tmp/external/ProMC/ProMCDescription.pb.$(ObjSuf)264 265 ifeq ($(HAS_PYTHIA8),true)266 DELPHES_OBJ += \267 268 endif269 249 270 250 endif … … 381 361 display/DisplayLinkDef.h \ 382 362 display/DelphesDisplay.h \ 383 display/DelphesCaloData.h 363 display/DelphesCaloData.h \ 364 display/DelphesBranchElement.h \ 365 display/Delphes3DGeometry.h \ 366 display/DelphesEventDisplay.h \ 367 display/DelphesHtmlSummary.h \ 368 display/DelphesPlotSummary.h 384 369 DisplayDict$(PcmSuf): \ 385 370 tmp/display/DisplayDict$(PcmSuf) \ … … 1235 1220 display/DelphesDisplay.$(SrcSuf) \ 1236 1221 display/DelphesDisplay.h 1222 tmp/display/DelphesPlotSummary.$(ObjSuf): \ 1223 display/DelphesPlotSummary.$(SrcSuf) \ 1224 display/DelphesPlotSummary.h 1225 tmp/display/DelphesBranchElement.$(ObjSuf): \ 1226 display/DelphesBranchElement.$(SrcSuf) \ 1227 display/DelphesBranchElement.h \ 1228 classes/DelphesClasses.h 1229 tmp/display/DelphesEventDisplay.$(ObjSuf): \ 1230 display/DelphesEventDisplay.$(SrcSuf) \ 1231 external/ExRootAnalysis/ExRootConfReader.h \ 1232 external/ExRootAnalysis/ExRootTreeReader.h \ 1233 display/DelphesCaloData.h \ 1234 display/DelphesBranchElement.h \ 1235 display/Delphes3DGeometry.h \ 1236 display/DelphesEventDisplay.h \ 1237 classes/DelphesClasses.h 1238 tmp/display/DelphesHtmlSummary.$(ObjSuf): \ 1239 display/DelphesHtmlSummary.$(SrcSuf) \ 1240 display/DelphesHtmlSummary.h 1241 tmp/display/Delphes3DGeometry.$(ObjSuf): \ 1242 display/Delphes3DGeometry.$(SrcSuf) \ 1243 display/Delphes3DGeometry.h \ 1244 external/ExRootAnalysis/ExRootConfReader.h \ 1245 classes/DelphesClasses.h 1237 1246 tmp/display/DelphesCaloData.$(ObjSuf): \ 1238 1247 display/DelphesCaloData.$(SrcSuf) \ … … 1240 1249 DISPLAY_OBJ += \ 1241 1250 tmp/display/DelphesDisplay.$(ObjSuf) \ 1251 tmp/display/DelphesPlotSummary.$(ObjSuf) \ 1252 tmp/display/DelphesBranchElement.$(ObjSuf) \ 1253 tmp/display/DelphesEventDisplay.$(ObjSuf) \ 1254 tmp/display/DelphesHtmlSummary.$(ObjSuf) \ 1255 tmp/display/Delphes3DGeometry.$(ObjSuf) \ 1242 1256 tmp/display/DelphesCaloData.$(ObjSuf) 1243 1257 … … 1461 1475 @touch $@ 1462 1476 1477 display/DelphesBranchElement.h: \ 1478 display/DelphesCaloData.h 1479 @touch $@ 1480 1463 1481 external/fastjet/internal/DynamicNearestNeighbours.hh: \ 1464 1482 external/fastjet/internal/numconsts.hh … … 1500 1518 @touch $@ 1501 1519 1520 display/DelphesEventDisplay.h: \ 1521 external/ExRootAnalysis/ExRootTreeReader.h \ 1522 display/DelphesDisplay.h \ 1523 display/Delphes3DGeometry.h \ 1524 display/DelphesHtmlSummary.h \ 1525 display/DelphesPlotSummary.h 1526 @touch $@ 1527 1502 1528 modules/TauTagging.h: \ 1503 1529 classes/DelphesModule.h … … 1584 1610 modules/Hector.h: \ 1585 1611 classes/DelphesModule.h 1612 @touch $@ 1613 1614 display/DelphesPlotSummary.h: \ 1615 external/ExRootAnalysis/ExRootTreeReader.h 1586 1616 @touch $@ 1587 1617
Note:
See TracChangeset
for help on using the changeset viewer.