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