source: trunk/examples/advanced/GNUmakefile @ 1358

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

update to geant4.9.3

File size: 881 bytes
Line 
1# $Id: GNUmakefile,v 1.7 2009/11/20 16:17:52 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 hadrontherapy medical_linac
14SUBDIRS += purging_magnet radioprotection human_phantom
15SUBDIRS += air_shower microbeam microdosimetry nanobeam
16SUBDIRS += Rich composite_calorimeter lAr_calorimeter
17
18.PHONY : all clean clean_libs
19
20all:
21        @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE)); done
22
23clean:
24        @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean); done
25
26clean_libs:
27        @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean_libs); done
Note: See TracBrowser for help on using the repository browser.