Back to home page

EIC code displayed by LXR

 
 

    


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

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