1 | LIBSCRENDERSOURCES = \
|
---|
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 |
|
---|
18 | LIBSCRENDERHEADERS = \
|
---|
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 |
|
---|
38 | lib_LTLIBRARIES +=
|
---|
39 | noinst_LTLIBRARIES += libSCrender.la
|
---|
40 | libSCrender_la_includedir = $(includedir)/util/render
|
---|
41 | libSCrender_la_CPPFLAGS = $(AM_CPPFLAGS)
|
---|
42 | libSCrender_la_LDFLAGS = $(AM_LDFLAGS)
|
---|
43 | libSCrender_la_LIBADD =
|
---|
44 |
|
---|
45 | nobase_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.
|
---|
55 | libSCrender_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 |
|
---|
77 | RENDERTESTS = \
|
---|
78 | rentest
|
---|
79 |
|
---|
80 | TESTS += $(RENDERTESTS)
|
---|
81 | check_PROGRAMS += $(RENDERTESTS)
|
---|
82 | noinst_PROGRAMS += $(RENDERTESTS)
|
---|
83 |
|
---|
84 | RENDERLIBS = \
|
---|
85 | libSCrender.la libSCmisc.la libSCstate.la libSCkeyval.la libSCclass.la libSCcontainer.la libSCref.la
|
---|
86 |
|
---|
87 | rentest_SOURCES = \
|
---|
88 | util/render/rentest.cc
|
---|
89 | rentest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/util/render\"
|
---|
90 | rentest_LDADD = \
|
---|
91 | $(RENDERLIBS)
|
---|
92 |
|
---|
93 |
|
---|
94 |
|
---|
95 | EXTRA_DIST += ./util/render/rentest.in
|
---|
96 |
|
---|
97 | DISTCLEANFILES += \
|
---|
98 | rentest.oogl
|
---|