source: trunk/source/geometry/solids/GNUmakefile @ 1347

Last change on this file since 1347 was 831, checked in by garnier, 16 years ago

import all except CVS

File size: 622 bytes
Line 
1# $Id: GNUmakefile,v 1.6 2003/10/01 14:51:39 gcosmo Exp $
2# --------------------------------------------------------------
3# Makes libraries for each subdomain:
4#         CSG, specific, Boolean, BREPS, STEP, STEPinterface.
5# GNUmakefile for solids libraries.  Gabriele Cosmo, 18/9/96.
6
7ifndef G4INSTALL
8  G4INSTALL = ../../..
9endif
10
11include $(G4INSTALL)/config/architecture.gmk
12SUBDIRS = CSG specific Boolean BREPS
13
14all:
15        @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE)); done
16
17clean:
18        @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean); done
19
20clean_libs:
21        @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean_libs); done
Note: See TracBrowser for help on using the repository browser.