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

24 lines
605 B
Makefile

# $Id: GNUmakefile,v 1.7 2002/11/08 17:40:27 dressel Exp $
# --------------------------------------------------------------
# GNUmakefile for examples module. Gabriele Cosmo, 08/04/02.
# --------------------------------------------------------------
ifndef G4INSTALL
G4INSTALL = ../../..
endif
include $(G4INSTALL)/config/architecture.gmk
SUBDIRS = B01 B02 B03
.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