File: Makefile.am

package info (click to toggle)
globus-callout 4.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,516 kB
  • sloc: sh: 11,139; ansic: 1,274; makefile: 117
file content (55 lines) | stat: -rw-r--r-- 1,485 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
check_DATA = test.conf

check_PROGRAMS = \
	callout_test \
        callout_chain_test

TESTS = $(check_PROGRAMS)
LOG_COMPILER = $(LIBTOOL) --mode=execute -dlopen libchaina_test.la

AM_CPPFLAGS = $(PACKAGE_DEP_CFLAGS) -I$(top_srcdir)/library -I.
LDADD = ../library/libglobus_callout.la $(PACKAGE_DEP_LIBS)

checkdir=${abs_top_builddir}/test
check_LTLIBRARIES = libtest.la \
                   libchaina_test.la \
                   libchainb_test.la \
                   libchainc_test.la

callout_test_LDADD = -dlpreopen libtest.la $(LDADD)
callout_chain_test_LDADD = \
    -dlpreopen libtest.la \
    -dlpreopen libchaina_test.la \
    -dlpreopen libchainb_test.la \
    -dlpreopen libchainc_test.la $(LDADD)

libtest_la_LDFLAGS = \
    -module \
    -export-dynamic \
    -no-undefined \
    -avoid-version \
    -rpath ${abs_top_builddir}/test
libtest_la_LIBADD = $(PACKAGE_DEP_LIBS)
libchaina_test_la_LDFLAGS = \
    -module \
    -export-dynamic \
    -no-undefined \
    -avoid-version \
    -rpath ${abs_top_builddir}/test
libchaina_test_la_LIBADD = $(PACKAGE_DEP_LIBS)
libchainb_test_la_LDFLAGS = \
    -module \
    -export-dynamic \
    -no-undefined \
    -avoid-version \
    -rpath ${abs_top_builddir}/test
libchainb_test_la_LIBADD = $(PACKAGE_DEP_LIBS)
libchainc_test_la_LDFLAGS = \
    -module \
    -export-dynamic \
    -no-undefined \
    -avoid-version \
    -rpath ${abs_top_builddir}/test
libchainc_test_la_LIBADD = $(PACKAGE_DEP_LIBS)

EXTRA_DIST = $(check_DATA)