26 lines
747 B
Makefile
26 lines
747 B
Makefile
# $Id: GNUmakefile,v 1.4 2003/06/25 14:55:54 gcosmo Exp $
|
|
# --------------------------------------------------------------
|
|
# GNUmakefile for examples module. Gabriele Cosmo, 06/04/98.
|
|
# --------------------------------------------------------------
|
|
|
|
ifndef G4INSTALL
|
|
G4INSTALL = ../..
|
|
endif
|
|
|
|
include $(G4INSTALL)/config/architecture.gmk
|
|
|
|
SUBDIRS = brachytherapy gammaray_telescope underground_physics
|
|
SUBDIRS += xray_fluorescence xray_telescope
|
|
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
|