Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-23 09:20:42

0001 # --------------------------------------------------------------
0002 # GNUmakefile for examples module.  Gabriele Cosmo, 06/04/98.
0003 # --------------------------------------------------------------
0004 
0005 name := AnaEx02
0006 G4TARGET := $(name)
0007 G4EXLIB := true
0008 
0009 ifndef G4INSTALL
0010   G4INSTALL = ../../..
0011 endif
0012 
0013 .PHONY: setup clean_setup all
0014 all: lib bin
0015 
0016 setup:
0017         @echo "Copying files from shared"
0018         @./shared/scripts/copy_files.sh shared
0019 
0020 clean_setup:
0021         @echo "Removing files copied from shared"
0022         @./shared/scripts/clean_files.sh shared
0023 
0024 # ROOT support
0025 CPPFLAGS += -I$(shell root-config --incdir) 
0026 EXTRALIBS = $(shell root-config --glibs)
0027 
0028 include $(G4INSTALL)/config/binmake.gmk
0029 
0030 visclean:
0031         rm -f g4*.prim g4*.eps g4*.wrl
0032         rm -f .DAWN_*
0033 
0034 histclean:
0035         rm ${G4WORKDIR}/tmp/${G4SYSTEM}/${G4TARGET}/HistoManager.o
0036 
0037