Makefile.vixie (97d92980a96a50750844f420cc225ddf918f0699) | Makefile.vixie (84f33dea627930e57209583fc83ffb3202babc0a) |
---|---|
1#/* Copyright 1988,1990,1993,1994 by Paul Vixie 2# * All rights reserved 3# * 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 11# * user. 12# * 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 16# */ 17 18# Makefile for vixie's cron 19# | 1#/* Copyright 1988,1990,1993,1994 by Paul Vixie 2# * All rights reserved 3# * 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 11# * user. 12# * 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 16# */ 17 18# Makefile for vixie's cron 19# |
20# $FreeBSD$ | 20# $Id: Makefile,v 2.9 1994/01/15 20:43:43 vixie Exp $ |
21# 22# vix 03mar88 [moved to RCS, rest of log is in there] 23# vix 30mar87 [goodbye, time.c; hello, getopt] 24# vix 12feb87 [cleanup for distribution] 25# vix 30dec86 [written] 26 27# NOTES: 28# 'make' can be done by anyone 29# 'make install' must be done by root 30# 31# this package needs getopt(3), bitstring(3), and BSD install(8). 32# 33# the configurable stuff in this makefile consists of compilation 34# options (use -O, cron runs forever) and destination directories. 35# SHELL is for the 'augumented make' systems where 'make' imports 36# SHELL from the environment and then uses it to run its commands. 37# if your environment SHELL variable is /bin/csh, make goes real | 21# 22# vix 03mar88 [moved to RCS, rest of log is in there] 23# vix 30mar87 [goodbye, time.c; hello, getopt] 24# vix 12feb87 [cleanup for distribution] 25# vix 30dec86 [written] 26 27# NOTES: 28# 'make' can be done by anyone 29# 'make install' must be done by root 30# 31# this package needs getopt(3), bitstring(3), and BSD install(8). 32# 33# the configurable stuff in this makefile consists of compilation 34# options (use -O, cron runs forever) and destination directories. 35# SHELL is for the 'augumented make' systems where 'make' imports 36# SHELL from the environment and then uses it to run its commands. 37# if your environment SHELL variable is /bin/csh, make goes real |
38# slow and sometimes does the wrong thing. | 38# slow and sometimes does the wrong thing. |
39# 40# this package needs the 'bitstring macros' library, which is 41# available from me or from the comp.sources.unix archive. if you 42# put 'bitstring.h' in a non-standard place (i.e., not intuited by 43# cc(1)), you will have to define INCLUDE to set the include 44# directory for cc. INCLUDE should be `-Isomethingorother'. 45# 46# there's more configuration info in config.h; edit that first! --- 82 unchanged lines hidden --- | 39# 40# this package needs the 'bitstring macros' library, which is 41# available from me or from the comp.sources.unix archive. if you 42# put 'bitstring.h' in a non-standard place (i.e., not intuited by 43# cc(1)), you will have to define INCLUDE to set the include 44# directory for cc. INCLUDE should be `-Isomethingorother'. 45# 46# there's more configuration info in config.h; edit that first! --- 82 unchanged lines hidden --- |