Fork me on GitHub

source: svn/trunk/examples/DelphesProMC.sh@ 1159

Last change on this file since 1159 was 1159, checked in by Pavel Demin, 11 years ago

remove trailing spaces

File size: 499 bytes
RevLine 
[1148]1#!/bin/sh
[1140]2
[1148]3if [ -z "$PROMC" ]
4then
5 echo "** ERROR: PROMC variable is not set. Is ProMC installed?"
6else
7 echo ">> PROMC is set to $PROMC"
[1158]8 echo ">> Building DelphesProMC"
[1159]9
[1155]10 /bin/mkdir -p external/ProMC
[1159]11
[1155]12 /bin/cp $PROMC/src/* external/ProMC/
[1140]13
[1155]14 INC="-I$PROMC/include"
[1140]15
[1155]16 LIB="external/ProMC/*.cc -L$PROMC/lib -lprotoc -lprotobuf -lprotobuf-lite -lcbook -lz"
[1140]17
[1148]18 g++ -I. -Iexternal $INC `root-config --cflags --ldflags --libs` -lEG -L. -lDelphes $LIB -o DelphesProMC examples/DelphesProMC.cpp
19fi
Note: See TracBrowser for help on using the repository browser.