NetBSD/usr.bin/calendar/Makefile
dholland 5a724c86b4 List calendar's known calendars explicitly, and only install those.
Prevents build failures caused by installing editor backups and other
such silliness.
2020-12-25 07:00:52 +00:00

19 lines
394 B
Makefile

# $NetBSD: Makefile,v 1.15 2020/12/25 07:00:52 dholland Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
.include <bsd.own.mk>
CALENDARS= birthday christian computer history holiday judaic \
lotr music netbsd usholiday
PROG= calendar
.if ${MKSHARE} != "no"
FILESDIR=/usr/share/calendar
.for _C_ in ${CALENDARS}
FILES+=${.CURDIR}/calendars/calendar.${_C_}
.endfor
.endif
.include <bsd.prog.mk>