1#	$OpenBSD: Makefile,v 1.8 2015/01/21 09:47:15 guenther Exp $
2
3INFO = amdref.info
4SRCS = amdref.texinfo
5
6all: ${INFO}
7
8${INFO}: ${SRCS}
9	-makeinfo --no-split ${.CURDIR}/${SRCS}
10
11clean cleandir:
12	-rm -f ${INFO}
13
14install: ${INFO}
15	 ${INSTALL} ${INSTALL_COPY} -o ${DOCOWN} -g ${DOCGRP} -m ${DOCMODE} ${INFO} ${DESTDIR}${SHAREDIR}/info
16	 install-info --info-dir=${DESTDIR}${SHAREDIR}/info amdref.info
17
18.include <bsd.own.mk>
19.include <bsd.obj.mk>
20.include <bsd.subdir.mk>
21