source: ThirdParty/mpqc_open/src/lib/chemistry/cca/Makefile@ 7516f6

Action_Thermostats Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Exclude_Hydrogens_annealWithBondGraph Fix_Verbose_Codepatterns ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters Recreated_GuiChecks StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 7516f6 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.5 KB
Line 
1#
2# Makefile
3#
4# Copyright (C) 1996 Limit Point Systems, Inc.
5#
6# Author: Curtis Janssen <cljanss@ca.sandia.gov>
7# Maintainer: LPS
8#
9# This file is part of the SC Toolkit.
10#
11# The SC Toolkit is free software; you can redistribute it and/or modify
12# it under the terms of the GNU Library General Public License as published by
13# the Free Software Foundation; either version 2, or (at your option)
14# any later version.
15#
16# The SC Toolkit is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU Library General Public License for more details.
20#
21# You should have received a copy of the GNU Library General Public License
22# along with the SC Toolkit; see the file COPYING.LIB. If not, write to
23# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24#
25# The U.S. Government is granted a limited license as per AL 91-7.
26#
27
28TOPDIR=../../../..
29ifndef SRCDIR
30 SRCDIR=$(shell pwd)
31endif
32
33default::
34
35clean:: clean-components
36
37BABEL_PACKAGES = MPQC
38
39BABEL_CLASSES = \
40 MPQC.Chemistry_MoleculeViewer \
41 MPQC.Chemistry_QC_Model \
42 MPQC.Chemistry_QC_ModelFactory \
43 MPQC.Physics_Units \
44 MPQC.GaussianBasis_Shell \
45 MPQC.GaussianBasis_Atomic \
46 MPQC.GaussianBasis_Molecular \
47 MPQC.IntegralEvaluatorFactory \
48 MPQC.IntegralEvaluator2 \
49 MPQC.IntegralEvaluator3 \
50 MPQC.IntegralEvaluator4 \
51 MPQC.ChemistryOpt_CoordinateModel \
52 MPQC.ComponentClassDescription \
53 MPQC.ComponentFactory \
54 MPQC.SimpleDriver
55
56EXTRA_CXX_SRCS = socket.cc except.cc basis_cca_to_sc.cc
57EXTRA_INCLUDES = socket.h except.h ccaiter.h
58
59include $(SRCDIR)/$(TOPDIR)/lib/GlobalMakefile
60DEFINES += -DSRCDIR=\"$(SRCDIR)\"
61
62SIDL_FILES=$(SRCTOPDIR)/lib/cca/sidl/chemistry-mpqc.sidl
63REPO = $(TOPDIR)/lib/cca/repo
64BABEL_ARGS = -E --suppress-timestamp -R$(CCA_SPEC_BABEL_SHARE)/xml -R$(CCA_CHEM_REPO) -R$(REPO) --server=C++
65
66## so we don't have to include babel.make
67PACKAGE_BASES := $(shell echo $(BABEL_PACKAGES) | sed s/\\./\\_/g )
68STUBHDRS = $(PACKAGE_BASES:%=%.hh)
69IORHDRS = $(PACKAGE_BASES:%=%_IOR.h)
70
71ENUM_BASES := $(shell echo $(BABEL_ENUMS) | sed s/\\./\\_/g )
72STUBHDRS += $(ENUM_BASES:%=%.hh)
73IORHDRS += $(ENUM_BASES:%=%_IOR.h)
74IORSRCS = $(ENUM_BASES:%=%_IOR.c)
75
76CLASS_BASES := $(shell echo $(BABEL_CLASSES) | sed s/\\./\\_/g )
77IORHDRS += $(CLASS_BASES:%=%_IOR.h)
78IORSRCS += $(CLASS_BASES:%=%_IOR.c)
79STUBHDRS += $(CLASS_BASES:%=%.hh)
80STUBSRCS = $(CLASS_BASES:%=%.cc)
81IMPLHDRS = $(CLASS_BASES:%=%_Impl.hh)
82IMPLSRCS = $(CLASS_BASES:%=%_Impl.cc)
83SKELSRCS = $(CLASS_BASES:%=%_Skel.cc)
84
85GEN_SRCS = $(IORHDRS) $(IORSRCS) $(STUBHDRS) $(STUBSRCS) \
86 $(IMPLHDRS) $(IMPLSRCS) $(SKELSRCS)
87CCA_CXX_SRCS = $(IMPLSRCS) $(SKELSRCS) $(STUBSRCS) $(EXTRA_CXX_SRCS)
88CCA_CC_SRCS = $(IORSRCS)
89CCA_OBJS = $(CCA_CXX_SRCS:%.cc=%.$(OBJSUF)) $(CCA_CC_SRCS:%.c=%.$(OBJSUF))
90CCA_INCLUDES = $(STUBHDRS) $(IORHDRS) $(EXTRA_INCLUDES)
91###
92
93BIN_OR_LIB = LIB
94TARGET_TO_MAKE = cca/libSCchemistry
95
96LIBOBJ = $(CCA_OBJS)
97CPPFLAGS += -I./ -I$(SRCDIR) -I$(CCA_SPEC_CLASSIC_INCLUDE)
98ifeq ($(HAVE_LIBINT),yes)
99 DEFINES += -DHAVE_CINTS
100endif
101ifeq ($(INTV3_ORDER),yes)
102 DEFINES += -DINTV3_ORDER
103endif
104tmp_libdir := $(libdir)
105SCLIBS = $(shell echo `ls ../../../../lib/*.$(LIBSUF)`)
106SCLINK = $(SCLIBS:lib%.$(LIBSUF)=-l%)
107LTLINKLIBOPTS += -L$(CCA_CHEM_LIB) -R$(CCA_CHEM_LIB) -lccachem_cxx_client -lccachem_cxx_server -L$(tmp_libdir) -R$(tmp_libdir) $(SCLINK) $(SYSLIBS)
108libdir = $(tmp_libdir)/cca
109
110include $(SRCDIR)/$(TOPDIR)/lib/GlobalRules
111
112$(LIBOBJ:.$(OBJSUF)=.d): $(DEPENDINCLUDE)
113ifneq ($(DODEPEND),no)
114include $(LIBOBJ:.$(OBJSUF)=.d)
115endif
Note: See TracBrowser for help on using the repository browser.