Files
geant4/environments/g4py/tests/GNUmakefile
T
2016-06-10 11:51:14 +02:00

19 lines
632 B
Makefile

# $Id: GNUmakefile 76884 2013-11-18 12:54:03Z gcosmo $
# ===========================================================
# Makefile for building Geant4Py modules
# ===========================================================
SUBDIR1 := test00 test07 test08 test09 test10 test11
SUBDIR1 += test12 test13
SUBDIR2 := test01 test02 test04 test05 test06
.PHONY: all clean
all:
@for dir in $(SUBDIR1); do (cd $$dir && $(MAKE)); done;:
@for dir in $(SUBDIR2); do (cd $$dir && $(MAKE) all); done;:
clean:
@for dir in $(SUBDIR1); do (cd $$dir && $(MAKE) clean); done;:
@for dir in $(SUBDIR2); do (cd $$dir && $(MAKE) cleanall); done;: