42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
#
|
|
# -------- AIX ---------- !!! not supported !!!
|
|
# AIX-4.3.2 xlC 6.0
|
|
|
|
ifeq ($(G4SYSTEM),AIX-xlC)
|
|
CXX := xlC
|
|
ifdef G4OPTIMISE
|
|
CXXFLAGS := -O3 -qtwolink -+
|
|
else
|
|
ifdef G4DEBUG
|
|
CXXFLAGS := -g -qdbxextra -qcheck=all -qfullpath -qtwolink -+
|
|
FCFLAGS := -g
|
|
CCFLAGS := -g
|
|
endif
|
|
endif
|
|
FC := xlf
|
|
FCFLAGS += -qextname
|
|
FCLIBS := -lxlf90 -lxlf
|
|
X11FLAGS := -I/usr/include/X11/extensions -I/usr/include/X11
|
|
X11LIBS := -L/usr/lib -lXmu -lX11 -lXext
|
|
XMFLAGS := -I/usr/include/Motif1.2
|
|
XMLIBS := -L/usr/lib -lXm -lXt -lX11
|
|
XAWFLAGS := -I/usr/include/X11
|
|
XAWLIBS := -L/usr/lib -lXaw -lXmu -lXt -lX11 -lXext
|
|
ifndef OGLFLAGS
|
|
OGLFLAGS := -I$(OGLHOME)/include
|
|
endif
|
|
ifndef OGLLIBS
|
|
OGLLIBS := -L$(OGLHOME)/lib -lGLU -lGL
|
|
endif
|
|
G4USE_STD_NAMESPACE := yes
|
|
CPPFLAGS += -DG4USE_STD_NAMESPACE
|
|
|
|
define build-granular-shared-lib
|
|
@echo "Shared Libraries not supported on $(G4SYSTEM)
|
|
endef
|
|
define build-global-shared-lib
|
|
@echo "Shared Libraries not supported on $(G4SYSTEM)
|
|
endef
|
|
|
|
endif
|