source: trunk/examples/GNUmakefile @ 1282

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

update

File size: 613 bytes
Line 
1# $Id: GNUmakefile,v 1.1 1999/01/07 16:05:16 gunter 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 = novice #extended #advanced
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.