1 #/* Copyright 1988,1990,1993,1994 by Paul Vixie
2 # * All rights reserved
4 # * Distribute freely, except: don't remove my name from the source or
5 # * documentation (don't take credit for my work), mark your changes (don't
6 # * get me blamed for your possible bugs), don't alter or remove this
7 # * notice. May be sold if buildable source is provided to buyer. No
8 # * warrantee of any kind, express or implied, is included with this
9 # * software; use at your own risk, responsibility for damages (if any) to
10 # * anyone resulting from the use of this software rests entirely with the
13 # * Send bug reports, bug fixes, enhancements, requests, flames, etc., and
14 # * I'll try to keep a version up to date. I can be reached as follows:
15 # * Paul Vixie <paul@vix.com> uunet!decwrl!vixie!paul
18 # Makefile for vixie's cron
20 # $FreeBSD: src/usr.sbin/cron/doc/Makefile.vixie,v 1.5 1999/08/28 01:15:53 peter Exp $
21 # $DragonFly: src/usr.sbin/cron/doc/Makefile.vixie,v 1.2 2003/06/17 04:29:53 dillon Exp $
23 # vix 03mar88 [moved to RCS, rest of log is in there]
24 # vix 30mar87 [goodbye, time.c; hello, getopt]
25 # vix 12feb87 [cleanup for distribution]
26 # vix 30dec86 [written]
29 # 'make' can be done by anyone
30 # 'make install' must be done by root
32 # this package needs getopt(3), bitstring(3), and BSD install(8).
34 # the configurable stuff in this makefile consists of compilation
35 # options (use -O, cron runs forever) and destination directories.
36 # SHELL is for the 'augumented make' systems where 'make' imports
37 # SHELL from the environment and then uses it to run its commands.
38 # if your environment SHELL variable is /bin/csh, make goes real
39 # slow and sometimes does the wrong thing.
41 # this package needs the 'bitstring macros' library, which is
42 # available from me or from the comp.sources.unix archive. if you
43 # put 'bitstring.h' in a non-standard place (i.e., not intuited by
44 # cc(1)), you will have to define INCLUDE to set the include
45 # directory for cc. INCLUDE should be `-Isomethingorother'.
47 # there's more configuration info in config.h; edit that first!
49 #################################### begin configurable stuff
50 #<<DESTROOT is assumed to have ./etc, ./bin, and ./man subdirectories>>
51 DESTROOT = $(DESTDIR)/usr
52 DESTSBIN = $(DESTROOT)/sbin
53 DESTBIN = $(DESTROOT)/bin
54 DESTMAN = $(DESTROOT)/share/man
60 #<<optimize or debug?>>
63 #<<ATT or BSD or POSIX?>>
66 #(BSD is only needed if <sys/params.h> does not define it, as on ULTRIX)
70 #<<lint flags of choice?>>
71 LINTFLAGS = -hbxa $(INCLUDE) $(COMPAT) $(DEBUGGING)
72 #<<want to use a nonstandard CC?>>
76 #(SGI IRIX systems need this)
77 #DEFS = -D_BSD_SIGNALS -Dconst=
78 #<<the name of the BSD-like install program>>
81 #<<any special load flags>>
83 #################################### end configurable stuff
86 CFLAGS = $(OPTIM) $(INCLUDE) $(COMPAT) $(DEFS)
88 INFOS = README CHANGES FEATURES INSTALL CONVERSION THANKS MAIL
89 MANPAGES = bitstring.3 crontab.5 crontab.1 cron.8 putman.sh
90 HEADERS = bitstring.h cron.h config.h pathnames.h \
92 SOURCES = cron.c crontab.c database.c do_command.c entry.c \
93 env.c job.c user.c popen.c misc.c compat.c
94 SHAR_SOURCE = $(INFOS) $(MANPAGES) Makefile $(HEADERS) $(SOURCES)
95 LINT_CRON = cron.c database.c user.c entry.c compat.c \
96 misc.c job.c do_command.c env.c popen.c
97 LINT_CRONTAB = crontab.c misc.c entry.c env.c compat.c
98 CRON_OBJ = cron.o database.o user.o entry.o job.o do_command.o \
99 misc.o env.o popen.o compat.o
100 CRONTAB_OBJ = crontab.o misc.o entry.o env.o compat.o
105 lint $(LINTFLAGS) $(LINT_CRON) $(LIBS) \
106 |grep -v "constant argument to NOT" 2>&1
107 lint $(LINTFLAGS) $(LINT_CRONTAB) $(LIBS) \
108 |grep -v "constant argument to NOT" 2>&1
111 $(CC) $(LDFLAGS) -o cron $(CRON_OBJ) $(LIBS)
113 crontab : $(CRONTAB_OBJ)
114 $(CC) $(LDFLAGS) -o crontab $(CRONTAB_OBJ) $(LIBS)
117 $(INSTALL) -c -m 111 -o root -s cron $(DESTSBIN)/
118 $(INSTALL) -c -m 4111 -o root -s crontab $(DESTBIN)/
119 sh putman.sh crontab.1 $(DESTMAN)
120 sh putman.sh cron.8 $(DESTMAN)
121 sh putman.sh crontab.5 $(DESTMAN)
123 clean :; rm -f *.o cron crontab a.out core tags *~ #*
126 makekit -m -s99k $(SHAR_SOURCE)
128 $(CRON_OBJ) : cron.h compat.h config.h externs.h pathnames.h Makefile
129 $(CRONTAB_OBJ) : cron.h compat.h config.h externs.h pathnames.h Makefile