summaryrefslogtreecommitdiff
path: root/share/pciids/Makefile
blob: 5e033afd92975e149c7e3c88abe9099c6da013fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#	$OpenBSD: Makefile,v 1.2 2008/11/08 14:57:54 matthieu Exp $

.include <bsd.own.mk>

all: pci.ids

install:
	${INSTALL_DATA} -c pci.ids ${DESTDIR}${X11BASE}/share/

pci.ids: ${BSDSRCDIR}/sys/dev/pci/pcidevs
	perl ${.CURDIR}/pcidevs2pciids.pl < ${BSDSRCDIR}/sys/dev/pci/pcidevs \
		> pci.ids

clean:
	rm -f pci.ids

.include <bsd.xorg.mk>