Pull in some of the lpt_port_test fixes from lpt.c.
[unix-history] / share / syscons / scrnmaps / Makefile
CommitLineData
23a14258 1SCRMAPS = koi8-r2alt.scr
23d31824 2
23a14258 3SCRMAPS_MK = ${SCRMAPS:R:S/$/.mk/g}
23d31824 4SCRDIR = /usr/share/syscons/scrnmaps
34efbdc8 5CLEANFILES+= ${SCRMAPS} ${SCRMAPS_MK}
23a14258
AC
6NOMAN = noman
7
8all: ${SCRMAPS}
23d31824
JH
9
10install:
23d31824
JH
11 install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${SCRMAPS} \
12 ${DESTDIR}${SCRDIR}
13
23a14258
AC
14${SCRMAPS}: ${.TARGET:R}.mk
15 ./${.TARGET:R}.mk ${.TARGET}
16
17${SCRMAPS_MK}: ${.TARGET:R} mkscrfil.c
18 ${CC} ${CFLAGS} -I${.CURDIR} -DFIL=\"${.TARGET:R}\" \
19 -o ${.TARGET} ${.CURDIR}/mkscrfil.c
20
23d31824 21.include <bsd.prog.mk>