1 # Makefile for The PCI Library
2 # (c) 1999--2014 Martin Mares <mj@ucw.cz>
4 # Expects to be invoked from the top-level Makefile and uses lots of its variables.
6 OBJS=init access generic dump names filter names-hash names-parse names-net names-cache names-hwdb params caps
7 INCL=internal.h pci.h config.h header.h sysdep.h types.h
9 ifdef PCI_HAVE_PM_LINUX_SYSFS
13 ifdef PCI_HAVE_PM_LINUX_PROC
17 ifdef PCI_HAVE_PM_INTEL_CONF
21 ifdef PCI_HAVE_PM_MMIO_CONF
26 ifdef PCI_HAVE_PM_ECAM
31 ifdef PCI_HAVE_PM_DUMP
35 ifdef PCI_HAVE_PM_FBSD_DEVICE
37 CFLAGS += -I/usr/src/sys
39 CFLAGS += -I${FREEBSD_SYS}
43 ifdef PCI_HAVE_PM_OBSD_DEVICE
47 ifdef PCI_HAVE_PM_AIX_DEVICE
51 ifdef PCI_HAVE_PM_NBSD_LIBPCI
55 ifdef PCI_HAVE_PM_DARWIN_DEVICE
59 ifdef PCI_HAVE_PM_SYLIXOS_DEVICE
60 OBJS += sylixos-device
63 ifdef PCI_HAVE_PM_HURD_CONF
67 ifdef PCI_HAVE_PM_WIN32_CFGMGR32
69 OBJS += win32-cfgmgr32
72 ifdef PCI_HAVE_PM_WIN32_KLDBG
76 ifdef PCI_HAVE_PM_WIN32_SYSDBG
86 OBJS += physmem-windows
87 else ifdef PCI_OS_DJGPP
94 ifdef PCI_HAVE_PM_AOS_EXPANSION
98 all: $(PCILIB) $(PCILIBPC)
101 $(PCILIB): $(addsuffix .o,$(OBJS))
107 all: $(PCIIMPDEF) $(PCIIMPLIB)
108 build.def: $(PCIIMPDEF)
109 $(PCIIMPDEF): libpci.ver ver2def.pl
110 perl ver2def.pl libpci.ver $(PCILIB) build.def $(PCIIMPDEF)
111 $(PCIIMPLIB): $(PCIIMPDEF)
112 $(DLLTOOL) --input-def $< --output-lib $@
114 dllrsrc.rc: winrsrc.rc.in
115 sed <$< >$@ -e 's,@PCILIB_VERSION@,$(PCILIB_VERSION),' \
116 -e 's,@PCILIB_VERSION_WINRC@,$(subst .,\$(comma),$(PCILIB_VERSION).0),' \
117 -e 's,@FILENAME@,$(PCILIB),' \
118 -e 's,@DESCRIPTION@,libpci,' \
119 -e 's,@LIBRARY_BUILD@,1,' \
120 -e 's,@DEBUG_BUILD@,$(if $(findstring -g,$(CFLAGS)),1,0),'
121 dllrsrc.o: dllrsrc.rc
122 $(WINDRES) --input=$< --output=$@ --input-format=rc --output-format=coff
125 CFLAGS += -fPIC -fvisibility=hidden
126 $(PCILIB): $(addsuffix .o,$(OBJS))
127 $(CC) -shared $(CFLAGS) $(LDFLAGS) $(PCILIB_LDFLAGS) -o $@ $^ $(LIB_LDLIBS)
133 $(PCILIBPC): libpci.pc.in
134 sed <$< >$@ -e 's,@PREFIX@,$(PREFIX),' \
135 -e 's,@INCDIR@,$(INCDIR),' \
136 -e 's,@LIBDIR@,$(LIBDIR),' \
137 -e 's,@IDSDIR@,$(IDSDIR),' \
138 -e 's,@VERSION@,$(VERSION),' \
139 -e 's,@LDLIBS@,$(LDLIBS),' \
140 -e 's,@WITH_LIBS@,$(WITH_LIBS),'
142 init.o: init.c $(INCL)
143 access.o: access.c $(INCL)
144 params.o: params.c $(INCL)
145 i386-ports.o: i386-ports.c $(INCL) i386-io-access.h i386-io-beos.h i386-io-cygwin.h i386-io-djgpp.h i386-io-haiku.h i386-io-hurd.h i386-io-linux.h i386-io-openbsd.h i386-io-sunos.h i386-io-windows.h
146 mmio-ports.o: mmio-ports.c $(INCL) physmem.h physmem-access.h
147 ecam.o: ecam.c $(INCL) physmem.h physmem-access.h
148 proc.o: proc.c $(INCL)
149 sysfs.o: sysfs.c $(INCL)
150 generic.o: generic.c $(INCL)
151 emulated.o: emulated.c $(INCL)
152 syscalls.o: syscalls.c $(INCL)
153 obsd-device.o: obsd-device.c $(INCL)
154 fbsd-device.o: fbsd-device.c $(INCL)
155 aix-device.o: aix-device.c $(INCL)
156 dump.o: dump.c $(INCL)
157 names.o: names.c $(INCL) names.h
158 names-cache.o: names-cache.c $(INCL) names.h
159 names-hash.o: names-hash.c $(INCL) names.h
160 names-net.o: names-net.c $(INCL) names.h
161 names-parse.o: names-parse.c $(INCL) names.h
162 names-hwdb.o: names-hwdb.c $(INCL) names.h
163 filter.o: filter.c $(INCL)
164 nbsd-libpci.o: nbsd-libpci.c $(INCL)
165 hurd.o: hurd.c $(INCL)
166 win32-helpers.o: win32-helpers.c $(INCL) win32-helpers.h
167 win32-cfgmgr32.o: win32-cfgmgr32.c $(INCL) win32-helpers.h
168 win32-kldbg.o: win32-kldbg.c $(INCL) win32-helpers.h
169 win32-sysdbg.o: win32-sysdbg.c $(INCL) win32-helpers.h
170 i386-io-windows.h: win32-helpers.h
172 # MinGW32 toolchain has some required Win32 header files in /ddk subdirectory.
173 # But these header files include another header files from /ddk subdirectory
174 # and expect that build system has already set /ddk subdirectory into includes.
175 # So include /ddk subdirectory of each system predefined include path via -I.
176 ifdef PCI_HAVE_PM_WIN32_CFGMGR32
177 DDKCFLAGS:=$(shell echo | $(CC) $(CFLAGS) -E -Wp,-v -o /dev/null - 2>&1 | sed -n 's/^ \(.*\)/-I\1\/ddk/p')
178 win32-cfgmgr32.o: override CFLAGS+=$(DDKCFLAGS)