diff options
author | David Oberhollenzer <david.oberhollenzer@tele2.at> | 2018-09-16 21:52:46 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@tele2.at> | 2018-09-19 12:22:14 +0200 |
commit | f38163772cb8ca25c440393132e8678e65437320 (patch) | |
tree | e0ad42ce3b374dda60ce92eab7f2f5fbca8722b4 /crond/Makemodule.am | |
parent | 5cd5f48f765f00b81786c6f569314474a91a06b8 (diff) |
Add simple cron implementation
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
Diffstat (limited to 'crond/Makemodule.am')
-rw-r--r-- | crond/Makemodule.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crond/Makemodule.am b/crond/Makemodule.am new file mode 100644 index 0000000..51960e9 --- /dev/null +++ b/crond/Makemodule.am @@ -0,0 +1,9 @@ +if GCROND +gcrond_SOURCES = crond/main.c crond/gcrond.h crond/runjob.c +gcrond_CPPFLAGS = $(AM_CPPFLAGS) +gcrond_CFLAGS = $(AM_CFLAGS) +gcrond_LDFLAGS = $(AM_LDFLAGS) +gcrond_LDADD = libcron.a libinit.a libcfg.a + +sbin_PROGRAMS += gcrond +endif |