source: trunk/geant4/config/sys/AIX-xlC.gmk@ 790

Last change on this file since 790 was 472, checked in by garnier, 19 years ago

r549@wl-72148: laurentgarnier | 2007-05-15 10:37:42 +0200
import de geant4

File size: 1.2 KB
Line 
1#
2# -------- AIX ---------- !!! not supported !!!
3# AIX-4.3.2 xlC 6.0
4
5ifeq ($(G4SYSTEM),AIX-xlC)
6 CXX := xlC
7 ifdef G4OPTIMISE
8 CXXFLAGS := -O3 -qtwolink -+
9 else
10 ifdef G4DEBUG
11 CXXFLAGS := -g -qdbxextra -qcheck=all -qfullpath -qtwolink -+
12 FCFLAGS := -g
13 CCFLAGS := -g
14 endif
15 endif
16 FC := xlf
17 FCFLAGS += -qextname
18 FCLIBS := -lxlf90 -lxlf
19 ifndef X11FLAGS
20 X11FLAGS := -I/usr/include/X11/extensions -I/usr/include/X11
21 endif
22 ifndef X11LIBS
23 X11LIBS := -L/usr/lib -lXmu -lX11 -lXext
24 endif
25 ifndef XMFLAGS
26 XMFLAGS := -I/usr/include/Motif1.2
27 endif
28 ifndef XMLIBS
29 XMLIBS := -L/usr/lib -lXm -lXt -lX11
30 endif
31 ifndef XAWFLAGS
32 XAWFLAGS := -I/usr/include/X11
33 endif
34 ifndef XAWLIBS
35 XAWLIBS := -L/usr/lib -lXaw -lXmu -lXt -lX11 -lXext
36 endif
37 ifndef OGLFLAGS
38 OGLFLAGS := -I$(OGLHOME)/include
39 endif
40 ifndef OGLLIBS
41 OGLLIBS := -L$(OGLHOME)/lib -lGLU -lGL
42 endif
43
44 define build-granular-shared-lib
45 @echo "Shared Libraries not supported on $(G4SYSTEM)
46 endef
47 define build-global-shared-lib
48 @echo "Shared Libraries not supported on $(G4SYSTEM)
49 endef
50
51endif
Note: See TracBrowser for help on using the repository browser.