forked from Imagelibrary/rtems
A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
36 lines
965 B
Makefile
36 lines
965 B
Makefile
include $(top_srcdir)/automake/compile.am
|
|
include $(top_srcdir)/automake/multilib.am
|
|
|
|
if LIBPCI
|
|
|
|
|
|
## PCI Library
|
|
noinst_LIBRARIES = libpci.a
|
|
|
|
libpci_a_SOURCES = pci_access.c
|
|
libpci_a_SOURCES += pci_access_func.c
|
|
libpci_a_SOURCES += pci_access_io.c
|
|
libpci_a_SOURCES += pci_access_mem.c
|
|
libpci_a_SOURCES += pci_access_mem_be.c
|
|
libpci_a_SOURCES += pci_access_mem_le.c
|
|
libpci_a_SOURCES += pci_cfg.c
|
|
libpci_a_SOURCES += pci_cfg_auto.c
|
|
libpci_a_SOURCES += pci_cfg_print_code.c
|
|
libpci_a_SOURCES += pci_cfg_read.c
|
|
libpci_a_SOURCES += pci_cfg_static.c
|
|
libpci_a_SOURCES += pci_cfg_peripheral.c
|
|
libpci_a_SOURCES += pci_find.c
|
|
libpci_a_SOURCES += pci_find_dev.c
|
|
libpci_a_SOURCES += pci_for_each.c
|
|
libpci_a_SOURCES += pci_for_each_dev.c
|
|
libpci_a_SOURCES += pci_for_each_child.c
|
|
libpci_a_SOURCES += pci_get_dev.c
|
|
libpci_a_SOURCES += pci_irq.c
|
|
libpci_a_SOURCES += pci_print.c
|
|
|
|
# Driver manager PCI bus
|
|
libpci_a_SOURCES += pci_bus.c
|
|
endif
|
|
|
|
include $(top_srcdir)/automake/local.am
|