aboutsummaryrefslogtreecommitdiff
path: root/src/gr/make.code.defn
blob: 37e9db654e56300505e8ac3e26a20f3f9d24a6a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Cactus specification of things to be compiled in this directory
# $Header$

# Source files in this directory
SRCS = expansion.cc \
       expansion_Jacobian.cc \
       Schwarzschild_EF.cc \
       misc-gr.cc

# Subdirectories containing source files
SUBDIRS =

# disable automatic template instantiation on DEC Alphas cxx compiler
ifeq ($(shell uname), OSF1)
  ifeq ($(CXX), cxx)
    CXXFLAGS += -nopt
  endif
endif

# disable automagic template instantiation on SGI Irix CC compiler
ifneq (,$(findstring IRIX,$(shell uname)))
  ifeq ($(notdir $(CXX)), CC)
    CXXFLAGS += -no_auto_include
  endif
endif