##### GNUmakefile #####
# ----------------------------------------------------------
# Script defining rules and paths for making binaries.
# ----------------------------------------------------------
# Automatic creation of GNUmakefile for Momo environment.
# with users selection of G4TARGET, UI and VIS variables
#  Momo is the name of legendary samurai who conquered the malicious geants. ----   H. Yoshida.

name := Demonstration_of_Geometry_Editor
G4TARGET := $(name)
G4EXLIB := true

# Vis/GUI used
G4VIS_USE_DAWN := 1
G4VIS_USE_OPENGLX := 1
G4UI_USE_TCSH := 1

# General Envs defined
G4SYSTEM:=Linux-g++
G4INSTALL:=/home/yoshidah/geant4.9.4.b01
G4WORKDIR:=/home/yoshidah/geant4
G4LIB:=/home/yoshidah/geant4.9.4.b01/lib
G4LIB_BUILD_SHARED:=1
G4LEDATA:=/home/yoshidah/geant4.9.4.b01/data/G4EMLOW6.13
G4LEVELGAMMADATA:=/home/yoshidah/geant4.9.4.b01/data/PhotonEvaporation2.0
G4RADIOACTIVEDATA:=/home/yoshidah/geant4.9.4.b01/data/RadioactiveDecay3.2

ifndef G4INSTALL
   G4INSTALL = ../../..
endif

.PHONY: all
all: lib bin

  include $(G4INSTALL)/config/binmake.gmk


