# fcron's Makefile ########
############################
-# $Id: Makefile.in,v 1.8 2000-05-24 17:51:59 thib Exp $
+# $Id: Makefile.in,v 1.9 2000-05-30 19:27:33 thib Exp $
# ********************************************************* #
# *** Begin of configurable stuffs ************************ #
# -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 -DCHECKJOBS -Wall -Wpointer-arith -Wstrict-prototypes
+OPTIM= -DDEBUG -Wall -Wpointer-arith -Wstrict-prototypes
#OPTIM= -O2 -Wall
#OPTIM= -O3 -mcpu=i686 -Wall
$(INSTALL) -c -m 644 -o root doc/fcrontab.5 $(DESTMAN)/man5/
$(INSTALL) -c -m 644 -o root doc/bitstring.3 $(DESTMAN)/man3/
script/sysVinit-install "$(CFLAGS)" $(INSTALL)
- mkdir -p /usr/doc/fcron-$(VERSION)
+ mkdir -p $(DESTDOC)/fcron-$(VERSION)
cd doc; $(INSTALL) -c -m 644 -o root README LICENSE CHANGES *.html \
$(DESTDOC)/fcron-$(VERSION)/
mkdir -p $(FCRONTABS)
%.html: %
groff -Thtml -mandoc $* > ./tmp
- sed "s:<body>:<body BGCOLOR="\#000000" TEXT="\#FFFFFF">\
- <h1>$(*F)</h1><br>:I" < ./tmp > $@
+ sed "s:<body.*>:<body BGCOLOR="\#000000" TEXT="\#FFFFFF" \
+ LINK="\#0FA0FF" VLINK="\#B000B0" ALINK="\#FF0000"> \
+ <h1>$(*F)</h1><br>:I" < ./tmp > $@
rm -f ./tmp
-updatedoc: doc/*.html
+updatedoc: doc/*
script/gen-doc $(VERSION)
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: allow.c,v 1.2 2000-05-15 18:28:31 thib Exp $ */
+ /* $Id: allow.c,v 1.3 2000-05-30 19:24:44 thib Exp $ */
#include "fcrontab.h"
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: conf.c,v 1.2 2000-05-15 18:28:33 thib Exp $ */
+ /* $Id: conf.c,v 1.3 2000-05-30 19:25:41 thib Exp $ */
#include "fcron.h"
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: config.h.in,v 1.3 2000-05-22 17:46:43 thib Exp $ */
+ /* $Id: config.h.in,v 1.4 2000-05-30 19:26:13 thib Exp $ */
/* *********************************************************** */
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: database.c,v 1.4 2000-05-24 12:35:19 thib Exp $ */
+ /* $Id: database.c,v 1.5 2000-05-30 19:26:21 thib Exp $ */
#include "fcron.h"
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: fcron.c,v 1.7 2000-05-24 17:51:37 thib Exp $ */
+ /* $Id: fcron.c,v 1.8 2000-05-30 19:26:28 thib Exp $ */
#include "fcron.h"
-char rcs_info[] = "$Id: fcron.c,v 1.7 2000-05-24 17:51:37 thib Exp $";
+char rcs_info[] = "$Id: fcron.c,v 1.8 2000-05-30 19:26:28 thib Exp $";
void main_loop(void);
void info(void);
{
fprintf(stderr,
"fcron " VERSION " - periodic command scheduler\n"
- "Copyright 2000 Thibault Godouet <sphawk@free.fr>\n"
+ "Copyright 2000 Thibault Godouet <fcron@free.fr>\n"
"This program is free software distributed\n"
"WITHOUT ANY WARRANTY.\n"
"See the GNU General Public License for more details.\n"
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: fcron.h,v 1.3 2000-05-16 19:53:42 thib Exp $ */
+ /* $Id: fcron.h,v 1.4 2000-05-30 19:26:48 thib Exp $ */
#ifndef __FCRONH__
#define __FCRONH__
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: fcrontab.c,v 1.3 2000-05-17 19:20:36 thib Exp $ */
+ /* $Id: fcrontab.c,v 1.4 2000-05-30 19:26:58 thib Exp $ */
/*
* The goal of this program is simple : giving a user interface to fcron
#include "fcrontab.h"
-char rcs_info[] = "$Id: fcrontab.c,v 1.3 2000-05-17 19:20:36 thib Exp $";
+char rcs_info[] = "$Id: fcrontab.c,v 1.4 2000-05-30 19:26:58 thib Exp $";
void info(void);
void usage(void);
{
fprintf(stderr,
"fcrontab " VERSION " - user interface to daemon fcron\n"
- "Copyright 2000 Thibault Godouet <sphawk@free.fr>\n"
+ "Copyright 2000 Thibault Godouet <fcron@free.fr>\n"
"This program is free software distributed\n"
"WITHOUT ANY WARRANTY.\n"
"See the GNU General Public License for more details.\n"
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: fcrontab.h,v 1.2 2000-05-15 18:28:42 thib Exp $ */
+ /* $Id: fcrontab.h,v 1.3 2000-05-30 19:27:20 thib Exp $ */
#ifndef __FCRONTABH__
#define __FCRONTABH__
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: fileconf.c,v 1.2 2000-05-15 18:28:44 thib Exp $ */
+ /* $Id: fileconf.c,v 1.3 2000-05-30 19:27:26 thib Exp $ */
#include "fcrontab.h"
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: global.h,v 1.3 2000-05-24 17:51:55 thib Exp $ */
+ /* $Id: global.h,v 1.4 2000-05-30 19:27:28 thib Exp $ */
#ifndef __GLOBALH__
#define __GLOBALH__
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: job.c,v 1.4 2000-05-22 17:37:39 thib Exp $ */
+ /* $Id: job.c,v 1.5 2000-05-30 19:27:30 thib Exp $ */
#include "fcron.h"
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: log.c,v 1.2 2000-05-15 18:28:56 thib Exp $ */
+ /* $Id: log.c,v 1.3 2000-05-30 19:27:32 thib Exp $ */
/* This code is inspired by Anacron's sources of
Itai Tzur <itzur@actcom.co.il> ( thanks to him ) */
/*
* FCRON - periodic command scheduler
*
- * Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ * Copyright 2000 Thibault Godouet <fcron@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: subs.c,v 1.2 2000-05-15 18:28:59 thib Exp $ */
+ /* $Id: subs.c,v 1.3 2000-05-30 19:27:35 thib Exp $ */
#include "global.h"