1_SMEKA_common = 1
2
3# This smeka file initializes
4# basic constants in the smeka
5
6
7# This function is doubling the addprefix addsuffix routine
8addpresuf = $(addsuffix $(2),$(addprefix $(1),$(3)))
9
10
11# We force the CC,    FC,    CXX
12#              MPICC, MPIFC, MPICXX
13# to be unitialized
14# This will enable the vendor setup using
15# a default vendor
16unexport CC
17unexport FC
18unexport CXX
19unexport MPICC
20unexport MPIFC
21unexport MPICXX
22unexport AR
23unexport RANLIB
24unexport LIBTOOL
25
26
27
28
29#######
30#######
31
32# Below are constants that does not really
33# require changes etc.
34
35# Define common variables
36_OCT_rrr = 444
37_OCT_rwrr = 644
38_OCT_rwxrxrx = 755
39_OCT_rxrxrx = 555
40
41# A newline definition used to add newlines in Makefile
42# output.
43define _NL
44
45
46endef
47
48# Typically used target to force any other target to always run
49FORCE:
50
51# Local Variables:
52#  mode: makefile-gmake
53# End:
54