blob: 596bee2dba31e7610d7f3b425b0b6ef51625600c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FILES = xf86PciInfo2pcitable
all: $(FILES) verif
verif:
./verify_Cards.pl
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 ; ./merge2pcitable.pl pcitable /tmp/xf_pcitable pcitable
|