bb58ba64b2
- use cpp -traditional, since the default has now changed. We want to allow unmatched single quotes! - use fparseln, instead of a fixed 2k buffer. - make all locals static and move to the top. This is so we can eventually make calendar understand languages other than us_en - add braces and continue's to clarify things. - replace gratuitous fprintf uses with warnx. - replace vforks() with forks() since we tried to print errors with stdio. - add more warnings so that we know how things fail. XXX: Eventually we'll have to remove the cpp dependency, and we should: - make it use m4 instead [bad, breaks compatibility] or - add a small cpp like parser for #include [bad, too much code]
15 lines
298 B
Makefile
15 lines
298 B
Makefile
# $NetBSD: Makefile,v 1.11 2001/12/04 15:55:32 christos Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= calendar
|
|
.if ${MKSHARE} != "no"
|
|
FILESDIR=/usr/share/calendar
|
|
FILES!= echo ${.CURDIR}/calendars/calendar.*
|
|
.endif
|
|
DPADD+=${LIBUTIL}
|
|
LDADD+=-lutil
|
|
|
|
.include <bsd.prog.mk>
|