diff options
author | Mathieu Lirzin <mthl@openmailbox.org> | 2015-06-26 19:30:24 +0200 |
---|---|---|
committer | Dale Mellor <dale@rdmp.org> | 2015-07-04 07:00:18 +0100 |
commit | 2039060a1de3cca3aa3e9a1035ce08b430ff5ea6 (patch) | |
tree | bebf45c1941fd48a6bc9a35a73ab630016056b36 /scm/mcron | |
parent | bc38f2add23919573438b4642fb143428ce05927 (diff) | |
download | mcron-2039060a1de3cca3aa3e9a1035ce08b430ff5ea6.tar.gz mcron-2039060a1de3cca3aa3e9a1035ce08b430ff5ea6.tar.bz2 mcron-2039060a1de3cca3aa3e9a1035ce08b430ff5ea6.zip |
Add missing 'makefile.am'.
Diffstat (limited to 'scm/mcron')
-rw-r--r-- | scm/mcron/makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
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 + |