source: ThirdParty/mpqc_open/src/lib/util/psi3/libpsio/Makefile.am

Candidate_v1.6.1
Last change on this file 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: 4.3 KB
Line 
1LIBSCLIBPSIOSOURCES = \
2 util/psi3/libpsio/init.cc \
3 util/psi3/libpsio/done.cc \
4 util/psi3/libpsio/open.cc \
5 util/psi3/libpsio/close.cc \
6 util/psi3/libpsio/open_check.cc \
7 util/psi3/libpsio/error.cc \
8 util/psi3/libpsio/rw.cc \
9 util/psi3/libpsio/read.cc \
10 util/psi3/libpsio/write.cc \
11 util/psi3/libpsio/tocwrite.cc \
12 util/psi3/libpsio/tocread.cc \
13 util/psi3/libpsio/tocscan.cc \
14 util/psi3/libpsio/toclast.cc \
15 util/psi3/libpsio/tocdel.cc \
16 util/psi3/libpsio/tocclean.cc \
17 util/psi3/libpsio/tocprint.cc \
18 util/psi3/libpsio/get_filename.cc \
19 util/psi3/libpsio/get_numvols.cc \
20 util/psi3/libpsio/get_volpath.cc \
21 util/psi3/libpsio/volseek.cc \
22 util/psi3/libpsio/get_address.cc \
23 util/psi3/libpsio/get_global_address.cc \
24 util/psi3/libpsio/write_entry.cc \
25 util/psi3/libpsio/read_entry.cc \
26 util/psi3/libpsio/write_block.cc \
27 util/psi3/libpsio/read_block.cc
28
29# util/psi3/libpsio/close.cc \
30# util/psi3/libpsio/done.cc \
31# util/psi3/libpsio/error.cc \
32# util/psi3/libpsio/get_address.cc \
33# util/psi3/libpsio/get_filename.cc \
34# util/psi3/libpsio/get_global_address.cc \
35# util/psi3/libpsio/get_numvols.cc \
36# util/psi3/libpsio/get_volpath.cc \
37# util/psi3/libpsio/init.cc \
38# util/psi3/libpsio/open.cc \
39# util/psi3/libpsio/open_check.cc \
40# util/psi3/libpsio/psiotest.cc \
41# util/psi3/libpsio/read_block.cc \
42# util/psi3/libpsio/read.cc \
43# util/psi3/libpsio/read_entry.cc \
44# util/psi3/libpsio/rw.cc \
45# util/psi3/libpsio/tocclean.cc \
46# util/psi3/libpsio/tocdel.cc \
47# util/psi3/libpsio/toclast.cc \
48# util/psi3/libpsio/tocprint.cc \
49# util/psi3/libpsio/tocread.cc \
50# util/psi3/libpsio/tocscan.cc \
51# util/psi3/libpsio/tocwrite.cc \
52# util/psi3/libpsio/volseek.cc \
53# util/psi3/libpsio/write_block.cc \
54# util/psi3/libpsio/write.cc \
55# util/psi3/libpsio/write_entry.cc
56
57
58LIBSCLIBPSIOHEADERS = \
59 util/psi3/libpsio/psifiles.h \
60 util/psi3/libpsio/psio.h \
61 util/psi3/libpsio/psio.gbl
62
63lib_LTLIBRARIES +=
64noinst_LTLIBRARIES += libSCpsio.la
65libSCpsio_la_includedir = $(includedir)/util/psi3/libpsio
66libSCpsio_la_CPPFLAGS = $(AM_CPPFLAGS)
67libSCpsio_la_LDFLAGS = $(AM_LDFLAGS)
68libSCpsio_la_LIBADD =
69
70nobase_libSCpsio_la_include_HEADERS = ${LIBSCLIBPSIOHEADERS}
71
72## Define the source file list for the "libexample-@MPQC_API_VERSION@.la"
73## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and
74## will therefore be treated as if it were literally part of the target name,
75## and the variable name derived from that.
76## The file extension .cc is recognized by Automake, and makes it produce
77## rules which invoke the C++ compiler to produce a libtool object file (.lo)
78## from each source file. Note that it is not necessary to list header files
79## which are already listed elsewhere in a _HEADERS variable assignment.
80libSCpsio_la_SOURCES = ${LIBSCLIBPSIOSOURCES}
81
82## Instruct libtool to include ABI version information in the generated shared
83## library file (.so). The library ABI version is defined in configure.ac, so
84## that all version information is kept in one place.
85#libSCpsio_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION)
86
87## The generated configuration header is installed in its own subdirectory of
88## $(libdir). The reason for this is that the configuration information put
89## into this header file describes the target platform the installed library
90## has been built for. Thus the file must not be installed into a location
91## intended for architecture-independent files, as defined by the Filesystem
92## Hierarchy Standard (FHS).
93## The nodist_ prefix instructs Automake to not generate rules for including
94## the listed files in the distribution on 'make dist'. Files that are listed
95## in _HEADERS variables are normally included in the distribution, but the
96## configuration header file is generated at configure time and should not be
97## shipped with the source tarball.
98#libSCpsio_libincludedir = $(libdir)/util/psi3/libpsio/include
99#nodist_libSCpsio_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h
100
101
102PSIOTESTS = \
103 psiotest
104
105TESTS += $(PSIOTESTS)
106check_PROGRAMS += $(PSIOTESTS)
107noinst_PROGRAMS += $(PSIOTESTS)
108
109PSIOLIBS = \
110 libSCpsio.la libSCclass.la libSCcontainer.la libSCref.la libSCmisc.la libSCstate.la libSCkeyval.la
111
112psiotest_SOURCES = \
113 util/psi3/libpsio/psiotest.cc
114psiotest_LDADD = \
115 $(PSIOLIBS)
116
117
118DISTCLEANFILES += \
119 psiotest.32
Note: See TracBrowser for help on using the repository browser.