Add cpconfig.c to EXTRA_DIST.
Add CURSOR.NOTES to EXTRA_DIST. Add extrapci.ids to EXTRA_DIST and fix xf86PciIds.h rule.
This commit is contained in:
parent
e63f76caa1
commit
460145a5d5
|
@ -1,3 +1,10 @@
|
||||||
|
2005-10-06 Kristian Høgsberg <krh@redhat.com>
|
||||||
|
|
||||||
|
* hw/xfree86/parser/Makefile.am: Add cpconfig.c to EXTRA_DIST.
|
||||||
|
* hw/xfree86/ramdac/Makefile.am: Add CURSOR.NOTES to EXTRA_DIST.
|
||||||
|
* hw/xfree86/scanpci/Makefile.am: Add extrapci.ids to EXTRA_DIST
|
||||||
|
and fix xf86PciIds.h rule.
|
||||||
|
|
||||||
2005-10-06 Kevin E. Martin <kem-at-freedesktop-dot-org>
|
2005-10-06 Kevin E. Martin <kem-at-freedesktop-dot-org>
|
||||||
|
|
||||||
* hw/vfb/Makefile.am:
|
* hw/vfb/Makefile.am:
|
||||||
|
|
|
@ -10,4 +10,5 @@ EXTRA_DIST = \
|
||||||
configProcs.h \
|
configProcs.h \
|
||||||
xf86Optrec.h \
|
xf86Optrec.h \
|
||||||
xf86Parser.h \
|
xf86Parser.h \
|
||||||
xf86tokens.h
|
xf86tokens.h \
|
||||||
|
cpconfig.c
|
||||||
|
|
|
@ -9,7 +9,8 @@ libramdac_la_SOURCES = xf86RamDacMod.c xf86RamDac.c xf86RamDacCmap.c \
|
||||||
sdk_HEADERS = BT.h IBM.h TI.h xf86Cursor.h xf86RamDac.h
|
sdk_HEADERS = BT.h IBM.h TI.h xf86Cursor.h xf86RamDac.h
|
||||||
|
|
||||||
DISTCLEANFILES = xf86BitOrder.c
|
DISTCLEANFILES = xf86BitOrder.c
|
||||||
EXTRA_DIST = BTPriv.h IBMPriv.h TIPriv.h xf86CursorPriv.h xf86RamDacPriv.h
|
EXTRA_DIST = BTPriv.h IBMPriv.h TIPriv.h xf86CursorPriv.h xf86RamDacPriv.h \
|
||||||
|
CURSOR.NOTES
|
||||||
|
|
||||||
AM_CFLAGS = -DXAAReverseBitOrder=xf86ReverseBitOrder -DRAMDAC_MODULE \
|
AM_CFLAGS = -DXAAReverseBitOrder=xf86ReverseBitOrder -DRAMDAC_MODULE \
|
||||||
$(XORG_CFLAGS)
|
$(XORG_CFLAGS)
|
||||||
|
|
|
@ -19,6 +19,7 @@ EXTRA_DIST = \
|
||||||
xf86PciStr.h \
|
xf86PciStr.h \
|
||||||
xf86ScanPci.h \
|
xf86ScanPci.h \
|
||||||
pci.ids \
|
pci.ids \
|
||||||
|
extrapci.ids \
|
||||||
pciid2c.pl
|
pciid2c.pl
|
||||||
|
|
||||||
xf86PciData.c:
|
xf86PciData.c:
|
||||||
|
@ -26,6 +27,6 @@ xf86PciData.c:
|
||||||
echo "#include \"$(srcdir)/xf86ScanPci.c\"" >> $@
|
echo "#include \"$(srcdir)/xf86ScanPci.c\"" >> $@
|
||||||
|
|
||||||
xf86PciIds.h: $(srcdir)/../common/xf86PciInfo.h
|
xf86PciIds.h: $(srcdir)/../common/xf86PciInfo.h
|
||||||
$(PERL) $(srcdir)/pciid2c.pl $(srcdir)/../common/xf86PciInfo.h < $(srcdir)/pci.ids $(srcdir)/extrapci.ids > xf86PciIds.h
|
cat $(srcdir)/pci.ids $(srcdir)/extrapci.ids | $(PERL) $(srcdir)/pciid2c.pl $(srcdir)/../common/xf86PciInfo.h > xf86PciIds.h
|
||||||
|
|
||||||
DISTCLEANFILES = xf86PciData.c xf86PciIds.h
|
DISTCLEANFILES = xf86PciData.c xf86PciIds.h
|
||||||
|
|
Loading…
Reference in New Issue