Add missing Makefile

This commit is contained in:
Andrey A. Chernov 1994-09-25 03:53:59 +00:00
parent 64382c4105
commit bdd382022d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3079
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,19 @@
FONTS=cp866c-8x16.fnt cp865-8x14.fnt iso-8x16.fnt koi8-r-8x8.fnt cp866-8x14.fnt \
cp850-8x14.fnt cp865-8x16.fnt iso-8x8.fnt koi8-rc-8x16.fnt cp866-8x16.fnt \
cp850-8x16.fnt cp865-8x8.fnt koi8-r-8x14.fnt cp866-8x8.fnt cp850-8x8.fnt \
iso-8x14.fnt koi8-r-8x16.fnt cp866b-8x16.fnt koi8-rb-8x16.fnt
FONTDIR = /usr/share/syscons/fonts
NOMAN = noman
all:;
clean:;
install:
cd ${.CURDIR}; \
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FONTS} \
${DESTDIR}${FONTDIR}
.include <bsd.prog.mk>

View File

@ -0,0 +1,17 @@
KEYMAPS=danish.cp865.kbd danish.iso.kbd german.cp850.kbd german.iso.kbd \
swedish.cp850.kbd swedish.iso.kbd uk.cp850.kbd uk.iso.kbd \
us.iso.kbd ru.koi8-r.kbd
MAPSDIR = /usr/share/syscons/keymaps
NOMAN = noman
all:;
clean:;
install:
cd ${.CURDIR}; \
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${KEYMAPS} \
${DESTDIR}${MAPSDIR}
.include <bsd.prog.mk>