source: ThirdParty/mpqc_open/src/lib/util/render/Makefile.am@ b7e5b0

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 b7e5b0 was b7e5b0, checked in by Frederik Heber <heber@…>, 8 years ago

Added files created by tests to DISTCLEANFILES.

  • Property mode set to 100644
File size: 3.3 KB
Line 
1LIBSCRENDERSOURCES = \
2 util/render/algebra3.cc \
3 util/render/animate.cc \
4 util/render/appearance.cc \
5 util/render/color.cc \
6 util/render/material.cc \
7 util/render/object.cc \
8 util/render/oogl.cc \
9 util/render/polygons.cc \
10 util/render/polylines.cc \
11 util/render/polysphere.cc \
12 util/render/render.cc \
13 util/render/sphere.cc \
14 util/render/tempinst.cc \
15 util/render/transform.cc
16
17
18LIBSCRENDERHEADERS = \
19 util/render/algebra3.h \
20 util/render/animate.h \
21 util/render/appearance.h \
22 util/render/color.h \
23 util/render/find.h \
24 util/render/linkage.h \
25 util/render/material.h \
26 util/render/object.h \
27 util/render/oogl.h \
28 util/render/parameter.h \
29 util/render/polygons.h \
30 util/render/polylines.h \
31 util/render/polysphere.h \
32 util/render/render.h \
33 util/render/sphere.h \
34 util/render/stack.h \
35 util/render/transform.h
36
37
38lib_LTLIBRARIES +=
39noinst_LTLIBRARIES += libSCrender.la
40libSCrender_la_includedir = $(includedir)/util/render
41libSCrender_la_CPPFLAGS = $(AM_CPPFLAGS)
42libSCrender_la_LDFLAGS = $(AM_LDFLAGS)
43libSCrender_la_LIBADD =
44
45nobase_libSCrender_la_include_HEADERS = ${LIBSCRENDERHEADERS}
46
47## Define the source file list for the "libexample-@MPQC_API_VERSION@.la"
48## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and
49## will therefore be treated as if it were literally part of the target name,
50## and the variable name derived from that.
51## The file extension .cc is recognized by Automake, and makes it produce
52## rules which invoke the C++ compiler to produce a libtool object file (.lo)
53## from each source file. Note that it is not necessary to list header files
54## which are already listed elsewhere in a _HEADERS variable assignment.
55libSCrender_la_SOURCES = ${LIBSCRENDERSOURCES}
56
57## Instruct libtool to include ABI version information in the generated shared
58## library file (.so). The library ABI version is defined in configure.ac, so
59## that all version information is kept in one place.
60#libSCrender_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION)
61
62## The generated configuration header is installed in its own subdirectory of
63## $(libdir). The reason for this is that the configuration information put
64## into this header file describes the target platform the installed library
65## has been built for. Thus the file must not be installed into a location
66## intended for architecture-independent files, as defined by the Filesystem
67## Hierarchy Standard (FHS).
68## The nodist_ prefix instructs Automake to not generate rules for including
69## the listed files in the distribution on 'make dist'. Files that are listed
70## in _HEADERS variables are normally included in the distribution, but the
71## configuration header file is generated at configure time and should not be
72## shipped with the source tarball.
73#libSCrender_libincludedir = $(libdir)/util/render/include
74#nodist_libSCrender_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h
75
76
77RENDERTESTS = \
78 rentest
79
80TESTS += $(RENDERTESTS)
81check_PROGRAMS += $(RENDERTESTS)
82noinst_PROGRAMS += $(RENDERTESTS)
83
84RENDERLIBS = \
85 libSCrender.la libSCmisc.la libSCstate.la libSCkeyval.la libSCclass.la libSCcontainer.la libSCref.la
86
87rentest_SOURCES = \
88 util/render/rentest.cc
89rentest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/util/render\"
90rentest_LDADD = \
91 $(RENDERLIBS)
92
93
94
95EXTRA_DIST += ./util/render/rentest.in
96
97DISTCLEANFILES += \
98 rentest.oogl
Note: See TracBrowser for help on using the repository browser.