diff options
author | Dale Mellor <dale@rdmp.org> | 2012-02-04 14:33:02 +0000 |
---|---|---|
committer | Dale Mellor <dale@rdmp.org> | 2012-02-04 14:33:02 +0000 |
commit | bd5a58ac2fc1fa435a499c0dd8e6f779e68551c0 (patch) | |
tree | 8f4414e27017f233bdfe3c8a28cfd443e3b3368b /makefile.am | |
parent | 0115be5d133d1e5252d9f05ece3c09ee350914ab (diff) | |
download | mcron-bd5a58ac2fc1fa435a499c0dd8e6f779e68551c0.tar.gz mcron-bd5a58ac2fc1fa435a499c0dd8e6f779e68551c0.tar.bz2 mcron-bd5a58ac2fc1fa435a499c0dd8e6f779e68551c0.zip |
Look for user configuration files in $XDG_CONFIG_HOME (default to ~/.config/cron) as well as ~/.cron.
Diffstat (limited to 'makefile.am')
-rw-r--r-- | makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/makefile.am b/makefile.am index 4474ffe..9d19014 100644 --- a/makefile.am +++ b/makefile.am @@ -49,6 +49,9 @@ pkgdata_DATA = core.scm environment.scm job-specifier.scm redirect.scm \ # like core.*, so we have to keep re-making it (I lost a good day's work because # of this). +mcron : mcron.c + $(CC) $(AM_CFLAGS) mcron.c -o mcron $(AM_LDFLAGS) + core.scm : mcron-core.scm $(CP) mcron-core.scm core.scm |