Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-23 09:21:09

0001 # --------------------------------------------------------------
0002 # GNUmakefile for examples module.
0003 # --------------------------------------------------------------
0004 name := mctruthex
0005 G4TARGET := $(name)
0006 G4EXLIB := true
0007 
0008 ifndef G4INSTALL
0009   G4INSTALL = ../../../../..
0010 endif
0011 
0012 .PHONY: all
0013 
0014 ifdef HEPMC_DIR
0015 all: lib bin
0016   include $(G4INSTALL)/config/binmake.gmk
0017 
0018   INCFLAGS  += -I$(HEPMC_DIR)/include
0019   LDLIBS    += -L$(HEPMC_DIR)/lib -lHepMC 
0020 else
0021 all:
0022         @echo 'ERROR - HEPMC_DIR not defined in the environment !'
0023         @echo '        Tested with HepMC release 2.06.03.'
0024 endif