diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2015-06-26 19:30:24 +0200 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2016-05-04 14:56:07 +0200 |
commit | b3202cecf6a051d726f9af5d080aeb89257b0a98 (patch) | |
tree | f4fe672eb328a254aa9f8b41b39b3c89157f2dab | |
parent | bc38f2add23919573438b4642fb143428ce05927 (diff) | |
download | mcron-b3202cecf6a051d726f9af5d080aeb89257b0a98.tar.gz mcron-b3202cecf6a051d726f9af5d080aeb89257b0a98.tar.bz2 mcron-b3202cecf6a051d726f9af5d080aeb89257b0a98.zip |
build: Add missing 'makefile.am'.
* scm/mcron/makefile.am: New file.
* .gitignore: Ignore 'mcron' only in the top-level directory.
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | scm/mcron/makefile.am | 15 |
2 files changed, 16 insertions, 1 deletions
@@ -13,7 +13,7 @@ depcomp install-sh makefile makefile.in -mcron +/mcron mcron.c mcron.info *.o 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 + |