blob: a98e951b2858159f826c2cbac184e06a2a88e3e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 ; perl rh_pcitable2pcitable /tmp/xf_pcitable ../pcitable
|