summaryrefslogtreecommitdiff
path: root/fonts/ko-x11fonts/files/Makefile
blob: 8bbed32101bd7a267ae0ae49e7eb27a9a6f31624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
BDF0!=	find .. -type f -a -name \*.bdf -print
BDF=	${BDF0:C/.*\///}
PCF=	${BDF:C/bdf$/pcf/}
PCFALL!=find . -type f -a -name \*.pcf -print

.SUFFIXES:	.bdf .pcf

.bdf.pcf:
	bdftopcf -o $@ $<

all: ${PCF}

prepare::
	for i in ${BDF0}; do \
		ln -s $$i; \
	done

install::
	for i in ${PCFALL}; do \
		${BSD_INSTALL_DATA} $$i ${FONTDIR}; \
		${GZIP_CMD} ${FONTDIR}/$$i; \
	done

clean:
	rm -f *.bdf *.pcf