>From 06a9b403df9b271e1e5d778b019dd7cc84ed99d3 Mon Sep 17 00:00:00 2001 From: Mathieu Lirzin Date: Fri, 26 Jun 2015 19:30:24 +0200 Subject: [PATCH 1/4] Add missing 'makefile.am'. --- .gitignore | 2 +- ChangeLog | 7 +++++++ scm/mcron/makefile.am | 15 +++++++++++++++ 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 scm/mcron/makefile.am diff --git a/.gitignore b/.gitignore index f8096eb..00fa239 100644 --- a/.gitignore +++ b/.gitignore @@ -13,7 +13,7 @@ depcomp install-sh makefile makefile.in -mcron +/mcron mcron.c mcron.info *.o diff --git a/ChangeLog b/ChangeLog index 15e01c0..cccecbe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2015-06-26 Mathieu Lirzin + + Add missing 'makefile.am'. + * scm/mcron/makefile.am: New file. + * .gitignore: Ignore 'mcron' only in the top-level directory. + + 2014-05-25 Dale Mellor * Juggled build infrastructure so that we can make the minimal man diff --git a/scm/mcron/makefile.am b/scm/mcron/makefile.am new file mode 100644 index 0000000..931b03b --- /dev/null +++ b/scm/mcron/makefile.am @@ -0,0 +1,15 @@ +EXTRA_DIST = main.scm mcron-core.scm vixie-specification.scm \ + crontab.scm environment.scm job-specifier.scm redirect.scm \ + vixie-time.scm + +pkgdata_DATA = core.scm environment.scm job-specifier.scm redirect.scm \ + vixie-time.scm vixie-specification.scm config.scm + + +# If you're wondering, the configure script keeps deleting all files with a name +# like core.*, so we have to keep re-making it (I lost a good day's work because +# of this). + +core.scm : mcron-core.scm + $(CP) mcron-core.scm core.scm + -- 2.1.4