xref: /freebsd-13.1/usr.bin/calendar/Makefile (revision d20d6550)
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD$
3
4.include <src.opts.mk>
5
6PROG=	calendar
7SRCS=	calendar.c locale.c events.c dates.c parsedata.c io.c day.c \
8	ostern.c paskha.c pom.c sunpos.c
9LIBADD=	m util
10
11.if ${MK_ICONV} == "yes"
12CFLAGS+=	-DWITH_ICONV
13.endif
14
15FILESGROUPS+=	CALS
16CALS=	calendars/calendar.freebsd
17CALSDIR=	${SHAREDIR}/calendar
18
19HAS_TESTS=
20SUBDIR.${MK_TESTS}+= tests
21
22.include <bsd.prog.mk>
23