2020-03-03 00:20:08 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
.include <src.opts.mk>
|
|
|
|
|
|
|
|
PROG= calendar
|
|
|
|
SRCS= calendar.c locale.c events.c dates.c parsedata.c io.c day.c \
|
|
|
|
ostern.c paskha.c pom.c sunpos.c
|
|
|
|
LIBADD= m util
|
|
|
|
|
|
|
|
.if ${MK_ICONV} == "yes"
|
|
|
|
CFLAGS+= -DWITH_ICONV
|
|
|
|
.endif
|
|
|
|
|
|
|
|
FILESGROUPS+= CALS
|
2020-10-26 03:26:18 +00:00
|
|
|
CALS= calendars/calendar.freebsd
|
2020-03-03 00:20:08 +00:00
|
|
|
CALSDIR= ${SHAREDIR}/calendar
|
|
|
|
|
|
|
|
HAS_TESTS=
|
|
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|