| 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 |
|
|---|
| 6 | ifndef G4INSTALL
|
|---|
| 7 | G4INSTALL = ../..
|
|---|
| 8 | endif
|
|---|
| 9 |
|
|---|
| 10 | include $(G4INSTALL)/config/architecture.gmk
|
|---|
| 11 |
|
|---|
| 12 | SUBDIRS = N01 N02 N03 N04 N05 N06 N07
|
|---|
| 13 |
|
|---|
| 14 | .PHONY : all clean clean_libs
|
|---|
| 15 |
|
|---|
| 16 | all:
|
|---|
| 17 | @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE)); done
|
|---|
| 18 |
|
|---|
| 19 | clean:
|
|---|
| 20 | @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean); done
|
|---|
| 21 |
|
|---|
| 22 | clean_libs:
|
|---|
| 23 | @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean_libs); done
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.