# fcron's Makefile ########
############################
-# $Id: Makefile.in,v 1.18 2000-06-21 10:46:28 thib Exp $
+# $Id: Makefile.in,v 1.19 2000-06-21 13:46:53 thib Exp $
# ********************************************************* #
# *** Begin of configurable stuffs ************************ #
# -DDEBUG even more verbose
# -DCHECKJOBS send a mail containing the exact shell command
# for each execution of each job.
-#OPTIM= -DDEBUG -g -DFOREGROUND
-OPTIM= -DDEBUG -DCHECKJOBS -Wall -Wpointer-arith -Wstrict-prototypes
-#OPTIM= -DDEBUG -Wall -Wpointer-arith -Wstrict-prototypes
-#OPTIM= -O2 -Wall
-#OPTIM= -O3 -mcpu=i686 -Wall
+#OPTIM= -DDEBUG -g -DFOREGROUND
+#OPTIM= -DDEBUG -DCHECKJOBS -Wall -Wpointer-arith -Wstrict-prototypes
+OPTIM= -DDEBUG -g -DCHECKJOBS -Wall -Wpointer-arith -Wstrict-prototypes
+#OPTIM= -DDEBUG -Wall -Wpointer-arith -Wstrict-prototypes
+#OPTIM= -O2 -Wall
+#OPTIM= -O3 -mcpu=i686 -Wall
# Options
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: global.h,v 1.10 2000-06-21 09:48:59 thib Exp $ */
+ /* $Id: global.h,v 1.11 2000-06-21 13:46:37 thib Exp $ */
/*
char cl_option; /* options for that line (see option.h) */
char *cl_shell; /* shell command */
pid_t cl_pid; /* running pid, 0, or armed (-1) */
- time_t cl_nextexe; /* time and date of the next execution */
- short int cl_remain; /* remaining until next execution */
- time_t cl_timefreq; /* Run every n seconds */
- short int cl_runfreq; /* Run once every n matches */
+ time_t cl_nextexe; /* time and date of the next execution */
+ short int cl_remain; /* remaining until next execution */
+ time_t cl_timefreq; /* Run every n seconds */
+ short int cl_runfreq; /* Run once every n matches */
/* see bitstring(3) man page for more details */
- bitstr_t bit_decl(cl_mins, 60); /* 0-59 */
+ bitstr_t bit_decl(cl_mins, 60); /* 0-59 */
bitstr_t bit_decl(cl_hrs, 24); /* 0-23 */
bitstr_t bit_decl(cl_days, 32); /* 1-31 */
bitstr_t bit_decl(cl_mons, 12); /* 0-11 */