Makefile_herwig

Go to the documentation of this file.
00001 #######################################################################
00002 #
00003 #  Makefile for HepMCAnalysis shared library to run at CERN and DESY
00004 #
00005 #  pathes (variables) and objects are set in setup script and config.mk
00006 #
00007 #  Sebastian Johnert 17.10.2008
00008 #
00009 #######################################################################
00010 
00011 SHELL = /bin/sh
00012 
00013 include ../../config.mk
00014 
00015 LHAPDF_LIBS = $(LHAPDFdir)/lib/liblhapdf.so
00016 LHAPDF_INCLUDES = $(LHAPDFdir)/include/LHAPDF/
00017 
00018 
00019 ## libraries for compiling Pythia8
00020 
00021 Herwiglibs = $(Herwigdir)/lib/hwudat.o $(Herwigdir)/lib/libherwig.so $(Herwigdir)/lib/libherwig_dummy.so 
00022 Jimmylibs = $(Jimmydir)/lib/libjimmy.so
00023 
00024 #################################
00025 
00026 
00027 EXAMPLES = herwig \
00028 
00029 # Create an executable linked to HepMC, CLHEP ...
00030 
00031    all: $(EXAMPLES)
00032 
00033 
00034    herwig: $(Herwiglibs) $(Jimmylibs) $(MYCLASS_PATH)/lib/libHepMCAnalysis.so
00035                  @mkdir -p ../../$(BINDIR)
00036                  $(CXX) $(CXXFLAGS) \
00037                  -I$(MYCLASS_PATH)/include \
00038                  -I$(Herwigdir)/include \
00039                  -I$(Jimmydir)/include \
00040                  -I$(HepMCdir)/include \
00041                  $(ROOTCFLAGS) \
00042                  herwig.cc -o herwig.exe \
00043                  -L$(Herwigdir)/lib  -lherwig -lherwig_dummy \
00044                  -L$(Jimmydir)/lib -ljimmy \
00045                  -L$(LHAPDFdir)/lib -llhapdf -llhapdf_dummy \
00046                  -L$(HepMCdir)/lib -lHepMC -lHepMCfio \
00047                  $(HepMClib) $(HepPDTlib) $(CLHEPlib) $(FastJetlib) \
00048                  -L$(MYCLASS_PATH)/lib -lHepMCAnalysis \
00049                  $(ROOTGLIBS) \
00050                  $(LINK_LIBS)
00051                  @ln -fs ../examples/herwig/herwig.exe ../../$(BINDIR)/herwig.exe
00052 
00053 
00054 # Clean up: remove executables and *.o files
00055 
00056 clean:
00057         rm -f *.exe *.o  ../../$(BINDIR)/herwig*.exe
00058         rm -f fort.77 fort.88
00059 
00060 # Fresh: remove executables, *.o and outdated files.
00061 
00062 fresh:
00063         rm -f *.exe *.o *.root ../../$(BINDIR)/herwig*.exe
00064 
00065 
00066 
00067 
00068 
00069 

Generated on Mon Jan 4 15:22:34 2010 for HepMCAnalysis by  doxygen 1.4.7