source: trunk/environments/g4py/site-modules/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: 617 bytes
Line 
1# $Id: GNUmakefile,v 1.4 2008/12/01 07:23:29 kmura Exp $
2# $Name: geant4-09-04-beta-01 $
3# ===========================================================
4#   Makefile for building Geant4Py site-modules
5# ===========================================================
6include  ../config/config.gmk
7
8SUBDIR := geometries materials processes physics_lists primaries
9SUBDIR += utils python
10
11.PHONY: all install clean
12
13all:
14        @for dir in $(SUBDIR); do (cd $$dir && $(MAKE)); done;:
15
16install:
17        @for dir in $(SUBDIR); do (cd $$dir && $(MAKE) install); done;:
18
19clean:
20        @for dir in $(SUBDIR); do (cd $$dir && $(MAKE) clean); done;:
21
Note: See TracBrowser for help on using the repository browser.