Files
geant4/examples/extended/biasing/GNUmakefile
T
2016-06-08 16:39:52 +02:00

24 lines
625 B
Makefile

# $Id: GNUmakefile,v 1.2 2002/06/04 12:04:20 dressel Exp $
# --------------------------------------------------------------
# GNUmakefile for examples module. Gabriele Cosmo, 08/04/02.
# --------------------------------------------------------------
ifndef G4INSTALL
G4INSTALL = ../../..
endif
include $(G4INSTALL)/config/architecture.gmk
SUBDIRS = B01 B02 B03 B04 B05 B06 B07 B08
.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