source: trunk/examples/advanced/GNUmakefile @ 810

Last change on this file since 810 was 807, checked in by garnier, 16 years ago

update

File size: 836 bytes
Line 
1# $Id: GNUmakefile,v 1.5 2004/06/23 16:09:48 gcosmo Exp $
2# --------------------------------------------------------------
3# GNUmakefile for examples module.  Gabriele Cosmo, 06/04/98.
4# --------------------------------------------------------------
5
6ifndef G4INSTALL
7  G4INSTALL = ../..
8endif
9 
10include $(G4INSTALL)/config/architecture.gmk
11
12SUBDIRS =  gammaray_telescope underground_physics xray_fluorescence xray_telescope
13SUBDIRS += brachytherapy cosmicray_charging hadrontherapy
14SUBDURS += medical_linac purging_magnet radioprotection
15SUBDIRS += Tiara Rich composite_calorimeter lAr_calorimeter
16
17.PHONY : all clean clean_libs
18
19all:
20        @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE)); done
21
22clean:
23        @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean); done
24
25clean_libs:
26        @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean_libs); done
Note: See TracBrowser for help on using the repository browser.