source: ThirdParty/mpqc_open/src/lib/chemistry/qc/oint3/Makefile@ bbc982

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests 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_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since bbc982 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: 1.8 KB
Line 
1TOPDIR=../../../../..
2ifndef SRCDIR
3 SRCDIR=$(shell pwd)
4endif
5include $(SRCDIR)/$(TOPDIR)/lib/GlobalMakefile
6
7BIN_OR_LIB = LIB
8TARGET_TO_MAKE=libSCoint3
9
10LIBSRC1 = \
11build.cc \
12i0100.cc \
13i0101.cc \
14i0111.cc \
15i0200.cc \
16i0201.cc \
17i0202.cc \
18i0211.cc \
19i0212.cc \
20i0222.cc \
21i1100.cc \
22i1111.cc \
23i1200.cc \
24i1201.cc \
25i1211.cc \
26i1212.cc \
27i1222.cc \
28i2200.cc \
29i2201.cc \
30i2211.cc \
31i2222.cc \
32i0100AB.cc \
33i0101AB.cc \
34i0111AB.cc \
35i0200AB.cc \
36i0201AB.cc \
37i0202AB.cc \
38i0211AB.cc \
39i0212AB.cc \
40i0222AB.cc \
41i1100AB.cc \
42i1111AB.cc \
43i1200AB.cc \
44i1201AB.cc \
45i1211AB.cc \
46i1212AB.cc \
47i1222AB.cc \
48i2200AB.cc \
49i2201AB.cc \
50i2211AB.cc \
51i2222AB.cc
52
53LIBSRC2= \
54i0300.cc \
55i0301.cc \
56i0302.cc \
57i0303.cc \
58i0311.cc \
59i0312.cc \
60i0313.cc \
61i0322.cc \
62i0323.cc \
63i0333.cc \
64i1300.cc \
65i1301.cc \
66i1302.cc \
67i1311.cc \
68i1312.cc \
69i1313.cc \
70i1322.cc \
71i1323.cc \
72i1333.cc \
73i2300.cc \
74i2301.cc \
75i2302.cc \
76i2311.cc \
77i2312.cc \
78i2322.cc \
79i2323.cc \
80i2333.cc \
81i3300.cc \
82i3301.cc \
83i3302.cc \
84i3311.cc \
85i3312.cc \
86i3322.cc \
87i3333.cc \
88i0300AB.cc \
89i0301AB.cc \
90i0302AB.cc \
91i0303AB.cc \
92i0311AB.cc \
93i0312AB.cc \
94i0313AB.cc \
95i0322AB.cc \
96i0323AB.cc \
97i0333AB.cc \
98i1300AB.cc \
99i1301AB.cc \
100i1302AB.cc \
101i1311AB.cc \
102i1312AB.cc \
103i1313AB.cc \
104i1322AB.cc \
105i1323AB.cc \
106i1333AB.cc \
107i2300AB.cc \
108i2301AB.cc \
109i2302AB.cc \
110i2311AB.cc \
111i2312AB.cc \
112i2322AB.cc \
113i2323AB.cc \
114i2333AB.cc \
115i3300AB.cc \
116i3301AB.cc \
117i3302AB.cc \
118i3311AB.cc \
119i3312AB.cc \
120i3322AB.cc \
121i3333AB.cc
122
123
124LIBSRC3=
125
126LIBSRC := $(LIBSRC1)
127
128ifneq ($(ARCH),NCUBE_V2)
129 LIBSRC := $(LIBSRC) $(LIBSRC2)
130
131 LIBSRC := $(LIBSRC) $(LIBSRC3)
132endif
133
134LIBOBJ = $(LIBSRC:%.cc=%.$(OBJSUF))
135
136DISTFILES = Makefile build.h $(LIBSRC1) $(LIBSRC2) $(LIBSRC3)
137
138include $(SRCDIR)/$(TOPDIR)/lib/GlobalRules
139
140$(LIBOBJ:.$(OBJSUF)=.d): $(DEPENDINCLUDE)
141ifneq ($(DODEPEND),no)
142include $(LIBOBJ:.$(OBJSUF)=.d) $(TESTOBJ:.o=.d)
143endif
Note: See TracBrowser for help on using the repository browser.