blob: 1aec5909b0ce28d134f342695176ea2e066e0790 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FILES = xf86PciInfo2pcitable
all: $(FILES)
clean:
rm -f $(FILES)
xf86PciInfo2pcitable: %: %.c xf86PciInfo.h
gcc -o $@ $<
#do
# take new xc/programs/Xserver/hw/xfree86/common/xf86PciInfo.h in XFree86-4
# make ; ./xf86PciInfo2pcitable > /tmp/xf_pcitable ; perl rh_pcitable2pcitable /tmp/xf_pcitable ../pcitable
|