Changes in Makefile [9189af2:36fb740] in git
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r9189af2 r36fb740 89 89 DISPLAYLIB = libDelphesDisplay.lib 90 90 91 VERSION = x.y.z91 VERSION = $(shell cat VERSION) 92 92 DISTDIR = Delphes-$(VERSION) 93 93 DISTTAR = $(DISTDIR).tar.gz … … 174 174 tmp/examples/Example1.$(ObjSuf): \ 175 175 examples/Example1.cpp \ 176 classes/DelphesClasses.h \ 177 external/ExRootAnalysis/ExRootResult.h \ 178 external/ExRootAnalysis/ExRootTreeBranch.h \ 179 external/ExRootAnalysis/ExRootTreeReader.h \ 180 external/ExRootAnalysis/ExRootTreeWriter.h \ 181 external/ExRootAnalysis/ExRootUtilities.h 182 DelphesValidation$(ExeSuf): \ 183 tmp/validation/DelphesValidation.$(ObjSuf) 184 185 tmp/validation/DelphesValidation.$(ObjSuf): \ 186 validation/DelphesValidation.cpp \ 176 187 classes/DelphesClasses.h \ 177 188 external/ExRootAnalysis/ExRootResult.h \ … … 188 199 stdhep2pileup$(ExeSuf) \ 189 200 CaloGrid$(ExeSuf) \ 190 Example1$(ExeSuf) 201 Example1$(ExeSuf) \ 202 DelphesValidation$(ExeSuf) 191 203 192 204 EXECUTABLE_OBJ += \ … … 198 210 tmp/converters/stdhep2pileup.$(ObjSuf) \ 199 211 tmp/examples/CaloGrid.$(ObjSuf) \ 200 tmp/examples/Example1.$(ObjSuf) 212 tmp/examples/Example1.$(ObjSuf) \ 213 tmp/validation/DelphesValidation.$(ObjSuf) 201 214 202 215 DelphesHepMC$(ExeSuf): \ … … 2421 2434 @echo ">> Building $(DISTTAR)" 2422 2435 @mkdir -p $(DISTDIR) 2423 @cp -a AUTHORS CHANGELOG CMakeLists.txt COPYING DelphesEnv.sh LICENSE NOTICE README README_4LHCb Makefile MinBias.pileup configure cards classes converters display doc examples external modules python readers validation $(DISTDIR)2436 @cp -a AUTHORS CHANGELOG CMakeLists.txt COPYING DelphesEnv.sh LICENSE NOTICE README README_4LHCb VERSION Makefile MinBias.pileup configure cards classes converters display doc examples external modules python readers validation $(DISTDIR) 2424 2437 @find $(DISTDIR) -depth -name .\* -exec rm -rf {} \; 2425 2438 @tar -czf $(DISTTAR) $(DISTDIR)
Note:
See TracChangeset
for help on using the changeset viewer.