xref: /netbsd-src/usr.bin/calendar/Makefile (revision 5a724c86b49fd782603efcc278c8c05c2a9a6836)
1#	$NetBSD: Makefile,v 1.15 2020/12/25 07:00:52 dholland Exp $
2#	@(#)Makefile	8.1 (Berkeley) 6/6/93
3
4.include <bsd.own.mk>
5
6CALENDARS=	birthday christian computer history holiday judaic \
7		lotr music netbsd usholiday
8
9PROG=	calendar
10
11.if ${MKSHARE} != "no"
12FILESDIR=/usr/share/calendar
13.for _C_ in ${CALENDARS}
14FILES+=${.CURDIR}/calendars/calendar.${_C_}
15.endfor
16.endif
17
18.include <bsd.prog.mk>
19