source: trunk/examples/novice/GNUmakefile @ 1288

Last change on this file since 1288 was 807, checked in by garnier, 16 years ago

update

File size: 617 bytes
Line 
1# $Id: GNUmakefile,v 1.2 2003/04/11 10:49:49 gcosmo Exp $
2# --------------------------------------------------------------
3# GNUmakefile for examples module.  Gabriele Cosmo, 06/04/98.
4# --------------------------------------------------------------
5
6ifndef G4INSTALL
7  G4INSTALL = ../..
8endif
9 
10include $(G4INSTALL)/config/architecture.gmk
11
12SUBDIRS = N01 N02 N03 N04 N05 N06 N07
13
14.PHONY : all clean clean_libs
15
16all:
17        @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE)); done
18
19clean:
20        @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean); done
21
22clean_libs:
23        @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean_libs); done
Note: See TracBrowser for help on using the repository browser.