]> mj.ucw.cz Git - pciutils.git/blob - lib/Makefile
libpci: Do not build physmem-posix.c when not needed
[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 ifndef PCI_OS_WINDOWS
86 ifndef PCI_OS_DJGPP
87 OBJS += physmem-posix
88 endif
89 endif
90 endif
91
92 all: $(PCILIB) $(PCILIBPC)
93
94 ifeq ($(SHARED),no)
95 $(PCILIB): $(addsuffix .o,$(OBJS))
96         rm -f $@
97         $(AR) rcs $@ $^
98         $(RANLIB) $@
99 else
100 ifeq ($(LIBEXT),dll)
101 all: $(PCIIMPDEF) $(PCIIMPLIB)
102 build.def: $(PCIIMPDEF)
103 $(PCIIMPDEF): libpci.ver ver2def.pl
104         perl ver2def.pl libpci.ver $(PCILIB) build.def $(PCIIMPDEF)
105 $(PCIIMPLIB): $(PCIIMPDEF)
106         $(DLLTOOL) --input-def $< --output-lib $@
107 comma := ,
108 dllrsrc.rc: winrsrc.rc.in
109         sed <$< >$@ -e 's,@PCILIB_VERSION@,$(PCILIB_VERSION),' \
110                 -e 's,@PCILIB_VERSION_WINRC@,$(subst .,\$(comma),$(PCILIB_VERSION).0),' \
111                 -e 's,@FILENAME@,$(PCILIB),' \
112                 -e 's,@DESCRIPTION@,libpci,' \
113                 -e 's,@LIBRARY_BUILD@,1,' \
114                 -e 's,@DEBUG_BUILD@,$(if $(findstring -g,$(CFLAGS)),1,0),'
115 dllrsrc.o: dllrsrc.rc
116         $(WINDRES) --input=$< --output=$@ --input-format=rc --output-format=coff
117 OBJS += dllrsrc
118 endif
119 CFLAGS += -fPIC -fvisibility=hidden
120 $(PCILIB): $(addsuffix .o,$(OBJS))
121         $(CC) -shared $(CFLAGS) $(LDFLAGS) $(PCILIB_LDFLAGS) -o $@ $^ $(LIB_LDLIBS)
122 ifeq ($(LIBEXT),dll)
123 $(PCILIB): build.def
124 endif
125 endif
126
127 $(PCILIBPC): libpci.pc.in
128         sed <$< >$@ -e 's,@PREFIX@,$(PREFIX),' \
129                 -e 's,@INCDIR@,$(INCDIR),' \
130                 -e 's,@LIBDIR@,$(LIBDIR),' \
131                 -e 's,@IDSDIR@,$(IDSDIR),' \
132                 -e 's,@VERSION@,$(VERSION),' \
133                 -e 's,@LDLIBS@,$(LDLIBS),' \
134                 -e 's,@WITH_LIBS@,$(WITH_LIBS),'
135
136 init.o: init.c $(INCL)
137 access.o: access.c $(INCL)
138 params.o: params.c $(INCL)
139 i386-ports.o: i386-ports.c $(INCL) i386-io-hurd.h i386-io-linux.h i386-io-sunos.h i386-io-windows.h i386-io-cygwin.h
140 mmio-ports.o: mmio-ports.c $(INCL) physmem.h physmem-access.h
141 ecam.o: ecam.c $(INCL) physmem.h physmem-access.h
142 proc.o: proc.c $(INCL)
143 sysfs.o: sysfs.c $(INCL)
144 generic.o: generic.c $(INCL)
145 emulated.o: emulated.c $(INCL)
146 syscalls.o: syscalls.c $(INCL)
147 obsd-device.o: obsd-device.c $(INCL)
148 fbsd-device.o: fbsd-device.c $(INCL)
149 aix-device.o: aix-device.c $(INCL)
150 dump.o: dump.c $(INCL)
151 names.o: names.c $(INCL) names.h
152 names-cache.o: names-cache.c $(INCL) names.h
153 names-hash.o: names-hash.c $(INCL) names.h
154 names-net.o: names-net.c $(INCL) names.h
155 names-parse.o: names-parse.c $(INCL) names.h
156 names-hwdb.o: names-hwdb.c $(INCL) names.h
157 filter.o: filter.c $(INCL)
158 nbsd-libpci.o: nbsd-libpci.c $(INCL)
159 hurd.o: hurd.c $(INCL)
160 win32-helpers.o: win32-helpers.c $(INCL) win32-helpers.h
161 win32-cfgmgr32.o: win32-cfgmgr32.c $(INCL) win32-helpers.h
162 win32-kldbg.o: win32-kldbg.c $(INCL) win32-helpers.h
163 win32-sysdbg.o: win32-sysdbg.c $(INCL) win32-helpers.h
164 i386-io-windows.h: win32-helpers.h
165
166 # MinGW32 toolchain has some required Win32 header files in /ddk subdirectory.
167 # But these header files include another header files from /ddk subdirectory
168 # and expect that build system has already set /ddk subdirectory into includes.
169 # So include /ddk subdirectory of each system predefined include path via -I.
170 ifdef PCI_HAVE_PM_WIN32_CFGMGR32
171 DDKCFLAGS:=$(shell echo | $(CC) $(CFLAGS) -E -Wp,-v -o /dev/null - 2>&1 | sed -n 's/^ \(.*\)/-I\1\/ddk/p')
172 win32-cfgmgr32.o: override CFLAGS+=$(DDKCFLAGS)
173 endif