source: trunk/environments/g4py/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: 592 bytes
Line 
1# $Id: GNUmakefile,v 1.2 2008/12/03 07:43:41 kmura Exp $
2# $Name: geant4-09-04-beta-01 $
3# ===========================================================
4#   Makefile for building Geant4Py
5# ===========================================================
6include  ./config/config.gmk
7
8SUBDIR := source site-modules
9
10.PHONY: all install clean uninstall
11
12all:
13        @for dir in $(SUBDIR); do (cd $$dir && $(MAKE)); done;:
14
15install:
16        @for dir in $(SUBDIR); do (cd $$dir && $(MAKE) install); done;:
17
18clean:
19        @for dir in $(SUBDIR); do (cd $$dir && $(MAKE) clean); done;:
20
21uninstall:
22        @-\rm -f -r $(Q_LIBDIR)
23
Note: See TracBrowser for help on using the repository browser.