|
Last change
on this file since 936 was 931, checked in by garnier, 17 years ago |
|
test pour GL_POINTS au lieu de glBitmap
|
|
File size:
1.6 KB
|
| Rev | Line | |
|---|
| [924] | 1 | # $Id: GNUmakefile,v 1.22 2009/02/16 15:31:05 lgarnier Exp $
|
|---|
| [776] | 2 | # -----------------------------------------------------------------------
|
|---|
| 3 | # GNUmakefile for visualization and modeling. John Allison, 5/7/95.
|
|---|
| 4 | # Modeling is always made. Others by environment. John Allison 4/7/98.
|
|---|
| 5 | # -----------------------------------------------------------------------
|
|---|
| [562] | 6 |
|
|---|
| [776] | 7 | MAKEFLAGS= --no-print-directory
|
|---|
| [562] | 8 |
|
|---|
| [776] | 9 | name := G4visualization
|
|---|
| 10 |
|
|---|
| [562] | 11 | ifndef G4INSTALL
|
|---|
| [776] | 12 | G4INSTALL = ../..
|
|---|
| [562] | 13 | endif
|
|---|
| 14 |
|
|---|
| 15 | include $(G4INSTALL)/config/architecture.gmk
|
|---|
| 16 | include $(G4INSTALL)/config/G4VIS_BUILD.gmk
|
|---|
| 17 | include $(G4INSTALL)/config/interactivity.gmk
|
|---|
| 18 |
|
|---|
| [776] | 19 | SUBDIRS := modeling
|
|---|
| 20 | SUBLIBS := G4modeling
|
|---|
| [562] | 21 |
|
|---|
| [776] | 22 | ifdef G4LIB_BUILD_ZLIB
|
|---|
| 23 | SUBDIRS += externals/zlib
|
|---|
| 24 | SUBLIBS += G4zlib
|
|---|
| 25 | endif
|
|---|
| 26 |
|
|---|
| [931] | 27 | CPPFLAGS += -DG4DEBUG_VIS_OGL
|
|---|
| 28 |
|
|---|
| [776] | 29 | # Libraries which can be used without external packages or libraries...
|
|---|
| 30 | ifdef G4VIS_BUILD
|
|---|
| 31 | SUBDIRS += management
|
|---|
| 32 | SUBLIBS += G4vis_management
|
|---|
| 33 | SUBDIRS += FukuiRenderer
|
|---|
| 34 | SUBLIBS += G4FR
|
|---|
| 35 | SUBDIRS += HepRep
|
|---|
| 36 | SUBLIBS += G4visHepRep
|
|---|
| 37 | SUBDIRS += RayTracer
|
|---|
| 38 | SUBLIBS += G4RayTracer
|
|---|
| 39 | SUBDIRS += VRML
|
|---|
| 40 | SUBLIBS += G4VRML
|
|---|
| 41 | SUBDIRS += Tree
|
|---|
| 42 | SUBLIBS += G4Tree
|
|---|
| 43 | SUBDIRS += XXX
|
|---|
| 44 | SUBLIBS += G4visXXX
|
|---|
| 45 |
|
|---|
| 46 | ifdef G4VIS_BUILD_OPENGL_DRIVER
|
|---|
| [921] | 47 | SUBDIRS += externals/gl2ps
|
|---|
| [776] | 48 | SUBDIRS += OpenGL
|
|---|
| 49 | SUBLIBS += G4OpenGL
|
|---|
| 50 | endif
|
|---|
| 51 | ifdef G4VIS_BUILD_OI_DRIVER
|
|---|
| [921] | 52 | SUBDIRS += externals/gl2ps
|
|---|
| [776] | 53 | SUBDIRS += OpenInventor
|
|---|
| 54 | SUBLIBS += G4OpenInventor
|
|---|
| 55 | endif
|
|---|
| 56 | endif #G4VIS_BUILD
|
|---|
| 57 |
|
|---|
| 58 | .PHONY: granular glob global clean
|
|---|
| 59 |
|
|---|
| 60 | glob global: granular
|
|---|
| 61 |
|
|---|
| 62 | granular:
|
|---|
| 63 | @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE)); done
|
|---|
| 64 |
|
|---|
| 65 | includes:
|
|---|
| 66 | @for dir in $(SUBDIRS); do (cd $$dir && $(MAKE) $@ ); done
|
|---|
| 67 |
|
|---|
| 68 | clean clean_libs:
|
|---|
| 69 | @for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) $@); done
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.