Files
geant4/examples/extended/biasing/GNUmakefile
T
2016-06-09 15:16:48 +02:00

24 lines
602 B
Makefile

# $Id: GNUmakefile,v 1.10 2007/06/13 14:45:49 ahoward Exp $
# --------------------------------------------------------------
# GNUmakefile for examples module. Gabriele Cosmo, 08/04/02.
# --------------------------------------------------------------
ifndef G4INSTALL
G4INSTALL = ../../..
endif
include $(G4INSTALL)/config/architecture.gmk
SUBDIRS = B01 B02
.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