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

45 lines
891 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 XORG_BUS_SPARC
2005-08-21 10:24:52 +02:00
PLATFORM_PCI_SOURCES = sparcPci.c
PLATFORM_SOURCES = Sbus.c
endif
libbus_la_SOURCES = Pci.c $(PCI_SOURCES) $(PLATFORM_PCI_SOURCES) \
$(PLATFORM_SOURCES)
2005-07-01 22:29:53 +02:00
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.
PCIDISTSOURCES = \
axpPci.c \
freebsdPci.c \
linuxPci.c \
netbsdPci.c \
ppcPci.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)