diff options
author | 2007-10-10 15:17:24 +0000 | |
---|---|---|
committer | 2007-10-10 15:17:24 +0000 | |
commit | 7d55e6b46bbce548b0222a59a25bd1b7080d80b2 (patch) | |
tree | bdfd21dee6438896812784d86562199446459a8c | |
parent | f0c21206dd97b56364baa3bc35d9835c3a528d1f (diff) | |
download | paludis-7d55e6b46bbce548b0222a59a25bd1b7080d80b2.tar.gz paludis-7d55e6b46bbce548b0222a59a25bd1b7080d80b2.tar.xz |
Fix distcheck.
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | src/clients/reconcilio/broken_linkage_finder/Makefile.am | 4 | ||||
-rw-r--r-- | src/clients/reconcilio/littlelf/Makefile.am | 10 | ||||
-rw-r--r-- | src/clients/reconcilio/util/Makefile.am | 4 |
4 files changed, 11 insertions, 8 deletions
diff --git a/Makefile.am b/Makefile.am index 66b51bd0d..a57c18b15 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,6 +20,7 @@ BUILT_SOURCES = automake-deps-built-hack.tmp automake-deps-dist-hack.tmp : built-sources-subdirs $(MAKE) -C paludis/util + $(MAKE) -C paludis/selinux $(MAKE) -C paludis libpaludis.la $(MAKE) -C paludis/args $(MAKE) -C paludis/ libpaludismanpagethings.la diff --git a/src/clients/reconcilio/broken_linkage_finder/Makefile.am b/src/clients/reconcilio/broken_linkage_finder/Makefile.am index 247de603e..a2acd4e3e 100644 --- a/src/clients/reconcilio/broken_linkage_finder/Makefile.am +++ b/src/clients/reconcilio/broken_linkage_finder/Makefile.am @@ -4,7 +4,7 @@ SUBDIRS = . noinst_LIBRARIES = libbrokenlinkagefinder.a -nodist_libbrokenlinkagefinder_a_SOURCES = \ +libbrokenlinkagefinder_a_SOURCES = \ broken_linkage_finder.cc broken_linkage_finder.hh \ configuration.cc configuration.hh \ linkage_checker.cc linkage_checker.hh \ @@ -20,9 +20,9 @@ TESTS = configuration_TEST check_PROGRAMS = $(TESTS) EXTRA_DIST = \ - $(TESTS) \ configuration_TEST_setup.sh configuration_TEST_cleanup.sh +configuration_TEST_SOURCES = configuration_TEST.cc configuration_TEST_LDADD = \ libbrokenlinkagefinder.a \ ../util/libreconcilioutil.a \ diff --git a/src/clients/reconcilio/littlelf/Makefile.am b/src/clients/reconcilio/littlelf/Makefile.am index 14c891e4c..952f20de9 100644 --- a/src/clients/reconcilio/littlelf/Makefile.am +++ b/src/clients/reconcilio/littlelf/Makefile.am @@ -5,11 +5,11 @@ SUBDIRS = . noinst_LIBRARIES = liblittlelf.a liblittlelf_a_SOURCES = \ - elf.cc elf.cc \ - elf_sections.cc elf_sections.cc \ - elf_dynamic_section.cc elf_dynamic_section.cc \ - elf_relocation_section.cc elf_relocation_section.cc \ - elf_symbol_section.cc elf_symbol_section.cc \ + elf.cc elf.hh \ + elf_sections.cc elf_sections.hh \ + elf_dynamic_section.cc elf_dynamic_section.hh \ + elf_relocation_section.cc elf_relocation_section.hh \ + elf_symbol_section.cc elf_symbol_section.hh \ elf_types.hh TESTS_ENVIRONMENT = env \ diff --git a/src/clients/reconcilio/util/Makefile.am b/src/clients/reconcilio/util/Makefile.am index d9d8cd88e..64fc9beae 100644 --- a/src/clients/reconcilio/util/Makefile.am +++ b/src/clients/reconcilio/util/Makefile.am @@ -18,22 +18,24 @@ TESTS = iterator_TEST realpath_TEST wildcard_expander_TEST check_PROGRAMS = $(TESTS) EXTRA_DIST = \ - $(TESTS) \ realpath_TEST_setup.sh realpath_TEST_cleanup.sh \ wildcard_expander_TEST_setup.sh wildcard_expander_TEST_cleanup.sh +iterator_TEST_SOURCES = iterator_TEST.cc iterator_TEST_LDADD = \ libreconcilioutil.a \ $(top_builddir)/paludis/util/libpaludisutil.la \ $(top_builddir)/paludis/util/test_extras.o \ $(top_builddir)/test/libtest.a +realpath_TEST_SOURCES = realpath_TEST.cc realpath_TEST_LDADD = \ libreconcilioutil.a \ $(top_builddir)/paludis/util/libpaludisutil.la \ $(top_builddir)/paludis/util/test_extras.o \ $(top_builddir)/test/libtest.a +wildcard_expander_TEST_SOURCES = wildcard_expander_TEST.cc wildcard_expander_TEST_LDADD = \ libreconcilioutil.a \ $(top_builddir)/paludis/util/libpaludisutil.la \ |