From 902e1e977991e0e2121c0d9a8417f1d157b87d87 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 21 Feb 2012 19:25:12 +0000 Subject: [PATCH] Fix EXTRA_DIST in Makefiles. --- daemon/Makefile.am | 2 ++ lib/Makefile.am | 2 ++ tests/jobs/Makefile.am | 2 +- tests/parsing/Makefile.am | 6 +++++- tools/Makefile.am | 2 ++ 5 files changed, 12 insertions(+), 2 deletions(-) diff --git a/daemon/Makefile.am b/daemon/Makefile.am index e388676..0599e56 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -15,6 +15,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +EXTRA_DIST = $(SOURCES) whenjobsd.pod + sbin_SCRIPTS = whenjobsd OCAMLPACKAGES = -package unix,num,camlp4.lib,calendar,rpc -I ../lib diff --git a/lib/Makefile.am b/lib/Makefile.am index 5ab4128..31d6ec0 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -15,6 +15,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +EXTRA_DIST = whenproto.x pa_when.ml $(SOURCES) + libwhenjobsdir = $(libdir)/$(PACKAGE_NAME) libwhenjobs_SCRIPTS = whenlib.cma pa_when.cmo diff --git a/tests/jobs/Makefile.am b/tests/jobs/Makefile.am index 079a519..6c0c6b0 100644 --- a/tests/jobs/Makefile.am +++ b/tests/jobs/Makefile.am @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -EXTRA_DIST = test_run.sh $(TESTS) +EXTRA_DIST = test_run.sh $(TESTS) $(TESTS:.ml=.ml.expected) TESTS_ENVIRONMENT = ./test_run.sh TESTS = t100_counter.ml t101_updown.ml t102_manyjobs.ml diff --git a/tests/parsing/Makefile.am b/tests/parsing/Makefile.am index 021a365..fe224da 100644 --- a/tests/parsing/Makefile.am +++ b/tests/parsing/Makefile.am @@ -15,7 +15,11 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -tests = t010_load.cmo t020_simple.cmo t030_jobnames.cmo +EXTRA_DIST = $(SOURCES) test_load.ml + +SOURCES = t010_load.ml t020_simple.ml t030_jobnames.ml + +tests = $(SOURCES:.ml=.cmo) check_SCRIPTS = test_load $(tests) diff --git a/tools/Makefile.am b/tools/Makefile.am index 506bc1a..20b659e 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -15,6 +15,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +EXTRA_DIST = $(SOURCES) whenjobs.pod + bin_SCRIPTS = whenjobs OCAMLPACKAGES = -package unix,num,camlp4.lib,calendar,rpc -I ../lib -- 1.8.3.1