source: ThirdParty/mpqc_open/lib/LocalMakefile.in@ 860145

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 860145 was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 3.4 KB
Line 
1# Emacs should use -*- Makefile -*- mode.
2
3LOCALMAKEFILE_FOUND=yes
4
5host = @host@
6host_cpu = @host_cpu@
7host_vendor = @host_vendor@
8host_os = @host_os@
9
10target = @target@
11target_cpu = @target_cpu@
12target_vendor = @target_vendor@
13target_os = @target_os@
14
15SC_VERSION = @SC_VERSION@
16SC_SO_VERSION = @SC_SO_VERSION@
17BUILDID = @BUILDID@
18
19# set to 'YES' if doxygen man pages are to be built by default
20DOXYGEN_MAN=@DOXYGEN_MAN@
21
22# The template repository
23TMPLREPO = @TMPLREPO@
24
25# "yes", if the contents of TMPLREPO should be put into libraries
26TMPLINLIB = @TMPLINLIB@
27
28# "yes", if libraries should be prelinked to force templates to
29# be instantiated
30TMPLINST = @TMPLINST@
31
32# The object code suffix
33OBJSUF = @OBJSUF@
34
35# The library suffix
36LIBSUF = @LIBSUF@
37
38ENABLESHARED = @ENABLESHARED@
39
40ifeq ($(ENABLESHARED),yes)
41 LIBTOOL= $(SHELL) $(TOPDIR)/libtool
42 LTLINK = $(LIBTOOL) --mode=link
43 ifneq ($(BUILDID),)
44 LTLINKLIBOPTS = -rpath $(libdir) -release $(BUILDID) -version-info $(SC_SO_VERSION)
45 else
46 LTLINKLIBOPTS = -rpath $(libdir) -version-info $(SC_SO_VERSION)
47 endif
48 LTLINKBINOPTS =
49 LTCOMP = $(LIBTOOL) --mode=compile
50 LTINST = $(LIBTOOL) --mode=install
51
52else
53 LIBTOOL=
54 LTLINK =
55 LTLINKLIBOPTS =
56 LTLINKBINOPTS =
57 LTCOMP =
58 LTINST =
59endif
60
61# The suffix generated by the -M compiler option
62CCDEPENDSUF = @CCDEPENDSUF@
63CXXDEPENDSUF = @CXXDEPENDSUF@
64CCDEPENDFLAGS = @CCDEPENDFLAGS@
65CXXDEPENDFLAGS = @CXXDEPENDFLAGS@
66
67CC = @CC@
68CXX = @CXX@
69FC = @F77@
70
71CCDEPEND = @CC@
72CXXDEPEND = @CXX@
73AR = @AR@
74ARFLAGS = @ARFLAGS@
75
76LD = $(CXX)
77LDFLAGS = @LDFLAGS@
78
79INSTALL = @INSTALL@
80INSTALLDIROPT = -d -m 0755
81INSTALLLIBOPT = -m 0644
82INSTALLBINOPT = -m 0755
83INSTALLSCRIPTOPT = -m 0755
84
85prefix=@prefix@
86exec_prefix=@exec_prefix@
87bindir=@bindir@
88libdir=@libdir@
89includedir=@scincludedir@
90datadir=@datadir@
91scdatadir=@scdatadir@
92
93WISH = @WISH@
94RANLIB = @RANLIB@
95PERL = @PERL@
96NIAMACFG = @NIAMACFG@
97COMPRESS = gzip
98UNCOMPRESS = gzip -d
99LISTLIBS= $(PERL) $(SRCTOPDIR)/bin/listlibs.pl -DLIBSUF=$(LIBSUF)
100MKF77SYM= $(PERL) $(TOPDIR)/bin/mkf77sym.pl
101
102# first check for generated include files in the machine dependent directories
103# and then for include files in the src directory
104INCLUDE = -I$(TOPDIR)/src/lib -I$(SRCTOPDIR)/include -I$(SRCTOPDIR)/src/lib \
105 @CPPFLAGS@
106DEFINES = @DEFS@ @EXTRADEFINES@
107
108CPPFLAGS = $(DEFINES) $(INCLUDE)
109
110CFLAGS = @CFLAGS@
111HIGHOPT_CFLAGS = $(CFLAGS)
112NOALIAS_CFLAGS =
113
114CXXFLAGS = @CXXFLAGS@
115HIGHOPT_CXXFLAGS = $(CXXFLAGS)
116NOALIAS_CXXFLAGS = $(NOALIAS_CFLAGS)
117
118FFLAGS = @FFLAGS@
119HIGHOPT_FFLAGS = $(FFLAGS)
120
121HAVE_SYSV_IPC = @HAVE_SYSV_IPC@
122HAVE_MPI = @HAVE_MPI@
123HAVE_ARMCI = @HAVE_ARMCI@
124HAVE_MPIIO = @HAVE_MPIIO@
125HAVE_PTHREAD = @HAVE_PTHREAD@
126HAVE_PERF = @HAVE_PERF@
127HAVE_LIBINT = @HAVE_LIBINT@
128HAVE_LIBR12 = @HAVE_LIBR12@
129HAVE_LIBDERIV = @HAVE_LIBDERIV@
130
131SYSLIBS = @LIBS@ @FLIBS@
132
133#
134# variables for CCA component code
135#
136
137ENABLECCA=@ENABLECCA@
138
139CCA_CHEM_REPO=@CCA_CHEM_REPO@
140
141# specs
142CCA_SPEC_BABEL_INCLUDE=@CCA_SPEC_BABEL_INCLUDE@
143CCA_SPEC_BABEL_LIB=@CCA_SPEC_BABEL_LIB@
144CCA_SPEC_BABEL_SHARE=@CCA_SPEC_BABEL_SHARE@
145CCA_SPEC_CLASSIC_INCLUDE=@CCA_SPEC_CLASSIC_INCLUDE@
146
147# babel
148BABEL=@BABEL_BIN@/babel
149BABEL_INCLUDE=@BABEL_INCLUDE@
150BABEL_LIB=@BABEL_LIB@
151
152# caffeine and classic for parameter ports
153CCAFE_LIB=@CCAFE_LIB@
154CCAFE_SHARE=@CCAFE_SHARE@
155
156# cca-chem libs
157CCA_CHEM_LIB=@CCA_CHEM_LIB@
158
159ifeq ($(ENABLECCA),yes)
160 LTLINKLIBOPTS += -rpath $(libdir)/cca
161endif
162
163# intv3 or cca/cints ordering?
164INTV3_ORDER=no
165
166
Note: See TracBrowser for help on using the repository browser.