xserver-multidpi/hw/xfree86/os-support/bus/Makefile.am

41 lines
835 B
Makefile
Raw Normal View History

noinst_LTLIBRARIES = libbus.la
2005-07-01 22:29:53 +02:00
sdk_HEADERS = xf86Pci.h
PCI_SOURCES = @XORG_OS_PCI@Pci.c
if XORG_BUS_IX86PCI
PCI_SOURCES += ix86Pci.c
endif
2005-07-01 22:29:53 +02:00
if LINUX_IA64
PLATFORM_PCI_SOURCES = 460gxPCI.c altixPCI.c e8870PCI.c zx1PCI.c
endif
if LINUX_SPARC
PLATFORM_PCI_SOURCE = sparcPci.c
endif
libbus_la_SOURCES = Pci.c $(PCI_SOURCES) $(PLATFORM_PCI_SOURCES)
2005-07-01 22:29:53 +02:00
if XORG_BUS_SBUS
libbus_la_SOURCES += Sbus.c
2005-07-01 22:29:53 +02:00
endif
INCLUDES = $(XORG_INCS)
AM_CFLAGS = $(XORG_CFLAGS)
# hack to keep all the OS PCI support files in the distball even though
# there aren't rules to build them all yet. also the AC_SUBST pattern
# above will defeat automake's EXTRA_DIST logic, woo.
2005-08-20 20:52:07 +02:00
PCIDISTSOURCES = freebsdPci.c linuxPci.c netbsdPci.c sparcPci.c
2005-07-01 22:29:53 +02:00
EXTRA_DIST = \
460gxPCI.h \
Pci.h \
altixPCI.h \
e8870PCI.h \
zx1PCI.h \
xf86Sbus.h \
$(PCIDISTSOURCES)