Import Geant4 10.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2019-12-06 15:12:28 +01:00
parent b2a62ae692
commit 5baee230e9
2997 changed files with 141580 additions and 98673 deletions
@@ -1,18 +1,21 @@
# --------------------------------------------------------------
# GNUmakefile for examples module. Gabriele Cosmo, 06/04/98.
# --------------------------------------------------------------
# -----------------------------------------------------------------
name := ExGflash
G4TARGET := $(name)
G4EXLIB := true
SUBDIR = gflash1 gflash2 gflash3 gflasha
.PHONY: all bin clean clean_bin debug
ifndef G4INSTALL
G4INSTALL = ../../../..
endif
all:
@for dir in $(SUBDIR); do (cd $$dir && $(MAKE) all); done;:
.PHONY: all
all: lib bin
include $(G4INSTALL)/config/architecture.gmk
include $(G4INSTALL)/config/binmake.gmk
bin:
@for dir in $(SUBDIR); do (cd $$dir && $(MAKE) bin); done;:
clean:
@for dir in $(SUBDIR); do (cd $$dir && $(MAKE) clean); done;:
clean_bin:
@for dir in $(SUBDIR); do (cd $$dir && $(MAKE) clean_bin); done;:
debug:
@for dir in $(SUBDIR); do (cd $$dir && $(MAKE) debug); done;: