]> git.ipfire.org Git - thirdparty/pciutils.git/blob - lib/Makefile
libpci: Update manpage documentation for devmem.path
[thirdparty/pciutils.git] / lib / Makefile
1 # Makefile for The PCI Library
2 # (c) 1999--2014 Martin Mares <mj@ucw.cz>
3
4 # Expects to be invoked from the top-level Makefile and uses lots of its variables.
5
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
8
9 ifdef PCI_HAVE_PM_LINUX_SYSFS
10 OBJS += sysfs
11 endif
12
13 ifdef PCI_HAVE_PM_LINUX_PROC
14 OBJS += proc
15 endif
16
17 ifdef PCI_HAVE_PM_INTEL_CONF
18 OBJS += i386-ports
19 endif
20
21 ifdef PCI_HAVE_PM_MMIO_CONF
22 OBJS += mmio-ports
23 PCI_USE_PHYSMEM = 1
24 endif
25
26 ifdef PCI_HAVE_PM_ECAM
27 OBJS += ecam
28 PCI_USE_PHYSMEM = 1
29 endif
30
31 ifdef PCI_HAVE_PM_DUMP
32 OBJS += dump
33 endif
34
35 ifdef PCI_HAVE_PM_FBSD_DEVICE
36 OBJS += fbsd-device
37 CFLAGS += -I/usr/src/sys
38 ifdef FREEBSD_SYS
39 CFLAGS += -I${FREEBSD_SYS}
40 endif
41 endif
42
43 ifdef PCI_HAVE_PM_OBSD_DEVICE
44 OBJS += obsd-device
45 endif
46
47 ifdef PCI_HAVE_PM_AIX_DEVICE
48 OBJS += aix-device
49 endif
50
51 ifdef PCI_HAVE_PM_NBSD_LIBPCI
52 OBJS += nbsd-libpci
53 endif
54
55 ifdef PCI_HAVE_PM_DARWIN_DEVICE
56 OBJS += darwin
57 endif
58
59 ifdef PCI_HAVE_PM_SYLIXOS_DEVICE
60 OBJS += sylixos-device
61 endif
62
63 ifdef PCI_HAVE_PM_HURD_CONF
64 OBJS += hurd
65 endif
66
67 ifdef PCI_HAVE_PM_WIN32_CFGMGR32
68 OBJS += emulated
69 OBJS += win32-cfgmgr32
70 endif
71
72 ifdef PCI_HAVE_PM_WIN32_KLDBG
73 OBJS += win32-kldbg
74 endif
75
76 ifdef PCI_HAVE_PM_WIN32_SYSDBG
77 OBJS += win32-sysdbg
78 endif
79
80 ifdef PCI_OS_WINDOWS
81 OBJS += win32-helpers
82 endif
83
84 ifdef PCI_USE_PHYSMEM
85 ifdef PCI_OS_WINDOWS
86 OBJS += physmem-windows
87 else ifdef PCI_OS_DJGPP
88 OBJS += physmem-djgpp
89 else
90 OBJS += physmem-posix
91 endif
92 endif
93
94 ifdef PCI_HAVE_PM_AOS_EXPANSION
95 OBJS += aos-expansion
96 endif
97
98 all: $(PCILIB) $(PCILIBPC)
99
100 ifeq ($(SHARED),no)
101 $(PCILIB): $(addsuffix .o,$(OBJS))
102 rm -f $@
103 $(AR) rcs $@ $^
104 $(RANLIB) $@
105 else
106 ifeq ($(LIBEXT),dll)
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 $@
113 comma := ,
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
123 OBJS += dllrsrc
124 endif
125 CFLAGS += -fPIC -fvisibility=hidden
126 $(PCILIB): $(addsuffix .o,$(OBJS))
127 $(CC) -shared $(CFLAGS) $(LDFLAGS) $(PCILIB_LDFLAGS) -o $@ $^ $(LIB_LDLIBS)
128 ifeq ($(LIBEXT),dll)
129 $(PCILIB): build.def
130 endif
131 endif
132
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),'
141
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
171
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)
179 endif