28 lines
906 B
Makefile
28 lines
906 B
Makefile
# $Id: GNUmakefile,v 1.6 2008/06/23 09:26:07 gcosmo Exp $
|
|
# --------------------------------------------------------------
|
|
# GNUmakefile for examples module. Gabriele Cosmo, 06/04/98.
|
|
# --------------------------------------------------------------
|
|
|
|
ifndef G4INSTALL
|
|
G4INSTALL = ../..
|
|
endif
|
|
|
|
include $(G4INSTALL)/config/architecture.gmk
|
|
|
|
SUBDIRS = gammaray_telescope underground_physics xray_fluorescence xray_telescope
|
|
SUBDIRS += brachytherapy cosmicray_charging hadrontherapy
|
|
SUBDIRS += medical_linac purging_magnet radioprotection human_phantom
|
|
SUBDIRS += air_shower microbeam microdosimetry nanobeam
|
|
SUBDIRS += Tiara Rich composite_calorimeter lAr_calorimeter
|
|
|
|
.PHONY : all clean clean_libs
|
|
|
|
all:
|
|
@for dir in $(SUBDIRS); do (cd $$dir; $(MAKE)); done
|
|
|
|
clean:
|
|
@for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean); done
|
|
|
|
clean_libs:
|
|
@for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean_libs); done
|