source: trunk/environments/g4py/tests/GNUmakefile @ 1337

Last change on this file since 1337 was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 666 bytes
Line 
1# $Id: GNUmakefile,v 1.2 2006/04/25 07:54:28 kmura Exp $
2# $Name: geant4-09-04-beta-01 $
3# ===========================================================
4#   Makefile for building Geant4Py modules
5# ===========================================================
6SUBDIR1 := test00 test07 test08 test09 test10 test11
7SUBDIR1 += test12 test13
8SUBDIR2 := test01 test02 test04 test05 test06
9
10.PHONY: all clean
11
12all:
13        @for dir in $(SUBDIR1); do (cd $$dir && $(MAKE)); done;:
14        @for dir in $(SUBDIR2); do (cd $$dir && $(MAKE) all); done;:
15
16clean:
17        @for dir in $(SUBDIR1); do (cd $$dir && $(MAKE) clean); done;:
18        @for dir in $(SUBDIR2); do (cd $$dir && $(MAKE) cleanall); done;:
19
Note: See TracBrowser for help on using the repository browser.