blob: c51b5ff0a44b53ce3eb52b39fe8f11bc2a373c6e (
plain)
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
56
57
58
59
60
61
62
63
64
|
include $(top_srcdir)/misc/common-makefile.am
AM_CXXFLAGS = -I$(top_srcdir) @PALUDIS_CXXFLAGS@ @PALUDIS_CXXFLAGS_VISIBILITY@
DEFS= \
-DSYSCONFDIR=\"$(sysconfdir)\" \
-DLIBEXECDIR=\"$(libexecdir)\" \
-DDATADIR=\"$(datadir)\"
TESTS = fake_repository_TEST fake_installed_repository_TEST dep_parser_TEST
check_PROGRAMS = $(TESTS)
EXTRA_DIST = \
fake_repository_TEST.cc \
fake_installed_repository_TEST.cc \
dep_parser_TEST.cc
fake_repository_TEST_LDADD = \
$(top_builddir)/paludis/util/libpaludisutil_@PALUDIS_PC_SLOT@.la \
$(top_builddir)/paludis/libpaludis_@PALUDIS_PC_SLOT@.la \
$(top_builddir)/test/libtest.a
fake_repository_TEST_CXXFLAGS = $(AM_CXXFLAGS) @PALUDIS_CXXFLAGS_NO_DEBUGGING@
fake_installed_repository_TEST_LDADD = \
$(top_builddir)/paludis/util/libpaludisutil_@PALUDIS_PC_SLOT@.la \
$(top_builddir)/paludis/libpaludis_@PALUDIS_PC_SLOT@.la \
$(top_builddir)/test/libtest.a
fake_installed_repository_TEST_CXXFLAGS = $(AM_CXXFLAGS) @PALUDIS_CXXFLAGS_NO_DEBUGGING@
dep_parser_TEST_LDADD = \
$(top_builddir)/paludis/util/libpaludisutil_@PALUDIS_PC_SLOT@.la \
$(top_builddir)/paludis/libpaludis_@PALUDIS_PC_SLOT@.la \
$(top_builddir)/test/libtest.a
dep_parser_TEST_CXXFLAGS = $(AM_CXXFLAGS) @PALUDIS_CXXFLAGS_NO_DEBUGGING@
fake_repository_TEST_SOURCES = \
fake_repository_TEST.cc
fake_installed_repository_TEST_SOURCES = \
fake_installed_repository_TEST.cc
dep_parser_TEST_SOURCES = \
dep_parser_TEST.cc
noinst_LTLIBRARIES = libpaludisfakerepository.la
libpaludisfakerepository_la_SOURCES = \
dep_parser.cc dep_parser.hh \
fake_repository_base.cc fake_repository_base.hh \
fake_repository.cc fake_repository.hh \
fake_installed_repository.cc fake_installed_repository.hh \
fake_package_id.cc fake_package_id.hh \
registration.cc
paludis_repositories_fake_includedir = $(includedir)/paludis-$(PALUDIS_PC_SLOT)/paludis/repositories/fake/
paludis_repositories_fake_include_HEADERS = \
dep_parser.hh \
fake_repository.hh \
fake_repository_base.hh \
fake_installed_repository.hh \
fake_package_id.hh
|