]> git.ipfire.org Git - thirdparty/pciutils.git/blob - Makefile
Merge remote-tracking branch 'pali/intel-conf1-memio'
[thirdparty/pciutils.git] / Makefile
1 # Makefile for The PCI Utilities
2 # (c) 1998--2022 Martin Mares <mj@ucw.cz>
3
4 OPT=-O2
5 CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes
6
7 VERSION=3.8.0
8 DATE=2022-04-18
9
10 # Host OS and release (override if you are cross-compiling)
11 HOST=
12 RELEASE=
13 CROSS_COMPILE=
14
15 # Support for compressed pci.ids (yes/no, default: detect)
16 ZLIB=
17
18 # Support for resolving ID's by DNS (yes/no, default: detect)
19 DNS=
20
21 # Build libpci as a shared library (yes/no; or local for testing; requires GCC)
22 SHARED=no
23
24 # Use libkmod to resolve kernel modules on Linux (yes/no, default: detect)
25 LIBKMOD=
26
27 # Use libudev to resolve device names using hwdb on Linux (yes/no, default: detect)
28 HWDB=
29
30 # ABI version suffix in the name of the shared library
31 # (as we use proper symbol versioning, this seldom needs changing)
32 ABI_VERSION=3
33
34 # Installation directories
35 PREFIX=/usr/local
36 BINDIR=$(PREFIX)/bin
37 SBINDIR=$(PREFIX)/sbin
38 SHAREDIR=$(PREFIX)/share
39 IDSDIR=$(SHAREDIR)
40 MANDIR:=$(shell if [ -d $(PREFIX)/share/man ] ; then echo $(PREFIX)/share/man ; else echo $(PREFIX)/man ; fi)
41 INCDIR=$(PREFIX)/include
42 LIBDIR=$(PREFIX)/lib
43 PKGCFDIR=$(LIBDIR)/pkgconfig
44
45 # Commands
46 INSTALL=install
47 DIRINSTALL=install -d
48 STRIP=-s
49 ifdef CROSS_COMPILE
50 CC=$(CROSS_COMPILE)gcc
51 else
52 CC=cc
53 endif
54 AR=$(CROSS_COMPILE)ar
55 RANLIB=$(CROSS_COMPILE)ranlib
56 DLLTOOL=$(CROSS_COMPILE)dlltool
57 WINDRES=$(CROSS_COMPILE)windres
58
59 # Base name of the library (overridden on NetBSD, which has its own libpci)
60 LIBNAME=libpci
61
62 -include lib/config.mk
63
64 PCIINC=lib/config.h lib/header.h lib/pci.h lib/types.h lib/sysdep.h
65 PCIINC_INS=lib/config.h lib/header.h lib/pci.h lib/types.h
66
67 export
68
69 all: lib/$(PCIIMPLIB) lspci$(EXEEXT) setpci$(EXEEXT) example$(EXEEXT) lspci.8 setpci.8 pcilib.7 pci.ids.5 update-pciids update-pciids.8 $(PCI_IDS)
70
71 lib/$(PCIIMPLIB): $(PCIINC) force
72 $(MAKE) -C lib all
73
74 force:
75
76 lib/config.h lib/config.mk:
77 cd lib && ./configure
78
79 COMMON=common.o
80 ifeq ($(COMPAT_GETOPT),yes)
81 PCIINC+=compat/getopt.h
82 COMMON+=compat/getopt.o
83 endif
84
85 lspci$(EXEEXT): lspci.o ls-vpd.o ls-caps.o ls-caps-vendor.o ls-ecaps.o ls-kernel.o ls-tree.o ls-map.o $(COMMON) lib/$(PCIIMPLIB)
86 setpci$(EXEEXT): setpci.o $(COMMON) lib/$(PCIIMPLIB)
87
88 LSPCIINC=lspci.h pciutils.h $(PCIINC)
89 lspci.o: lspci.c $(LSPCIINC)
90 ls-vpd.o: ls-vpd.c $(LSPCIINC)
91 ls-caps.o: ls-caps.c $(LSPCIINC)
92 ls-ecaps.o: ls-ecaps.c $(LSPCIINC)
93 ls-kernel.o: ls-kernel.c $(LSPCIINC)
94 ls-tree.o: ls-tree.c $(LSPCIINC)
95 ls-map.o: ls-map.c $(LSPCIINC)
96
97 setpci.o: setpci.c pciutils.h $(PCIINC)
98 common.o: common.c pciutils.h $(PCIINC)
99 compat/getopt.o: compat/getopt.c
100
101 lspci$(EXEEXT): LDLIBS+=$(LIBKMOD_LIBS)
102 ls-kernel.o: CFLAGS+=$(LIBKMOD_CFLAGS)
103
104 update-pciids: update-pciids.sh
105 sed <$< >$@ "s@^DEST=.*@DEST=$(if $(IDSDIR),$(IDSDIR)/,)$(PCI_IDS)@;s@^PCI_COMPRESSED_IDS=.*@PCI_COMPRESSED_IDS=$(PCI_COMPRESSED_IDS)@"
106 chmod +x $@
107
108 # The example of use of libpci
109 example$(EXEEXT): example.o lib/$(PCIIMPLIB)
110 example.o: example.c $(PCIINC)
111
112 %$(EXEEXT): %.o
113 $(CC) $(LDFLAGS) $(TARGET_ARCH) $^ $(LDLIBS) -o $@
114
115 ifdef PCI_OS_WINDOWS
116 comma := ,
117 %-rsrc.rc: lib/winrsrc.rc.in
118 sed <$< >$@ -e 's,@PCILIB_VERSION@,$(PCILIB_VERSION),' \
119 -e 's,@PCILIB_VERSION_WINRC@,$(subst .,\$(comma),$(PCILIB_VERSION).0),' \
120 -e 's,@FILENAME@,$(subst -rsrc.rc,$(EXEEXT),$@),' \
121 -e 's,@DESCRIPTION@,$(subst -rsrc.rc,,$@),' \
122 -e 's,@LIBRARY_BUILD@,0,' \
123 -e 's,@DEBUG_BUILD@,$(if $(findstring -g,$(CFLAGS)),1,0),'
124 %-rsrc.o: %-rsrc.rc
125 $(WINDRES) --input=$< --output=$@ --input-format=rc --output-format=coff
126 lspci$(EXEEXT): lspci-rsrc.o
127 setpci$(EXEEXT): setpci-rsrc.o
128 endif
129
130 %.8 %.7 %.5: %.man
131 M=`echo $(DATE) | sed 's/-01-/-January-/;s/-02-/-February-/;s/-03-/-March-/;s/-04-/-April-/;s/-05-/-May-/;s/-06-/-June-/;s/-07-/-July-/;s/-08-/-August-/;s/-09-/-September-/;s/-10-/-October-/;s/-11-/-November-/;s/-12-/-December-/;s/\(.*\)-\(.*\)-\(.*\)/\3 \2 \1/'` ; sed <$< >$@ "s/@TODAY@/$$M/;s/@VERSION@/pciutils-$(VERSION)/;s#@IDSDIR@#$(IDSDIR)#;s#@PCI_IDS@#$(PCI_IDS)#"
132
133 ctags:
134 rm -f tags
135 find . -name '*.[hc]' -exec ctags --append {} +
136
137 TAGS:
138 rm -f TAGS
139 find . -name '*.[hc]' -exec etags --append {} +
140
141 clean:
142 rm -f `find . -name "*~" -o -name "*.[oa]" -o -name "\#*\#" -o -name TAGS -o -name core -o -name "*.orig"`
143 rm -f update-pciids lspci$(EXEEXT) setpci$(EXEEXT) example$(EXEEXT) lib/config.* *.[578] pci.ids.gz lib/*.pc lib/*.so lib/*.so.* lib/*.dll lib/*.def lib/dllrsrc.rc *-rsrc.rc tags
144 rm -rf maint/dist
145
146 distclean: clean
147
148 install: all
149 # -c is ignored on Linux, but required on FreeBSD
150 $(DIRINSTALL) -m 755 $(DESTDIR)$(BINDIR) $(DESTDIR)$(SBINDIR) $(DESTDIR)$(IDSDIR) $(DESTDIR)$(MANDIR)/man8 $(DESTDIR)$(MANDIR)/man7 $(DESTDIR)$(MANDIR)/man5
151 $(INSTALL) -c -m 755 $(STRIP) lspci$(EXEEXT) $(DESTDIR)$(LSPCIDIR)
152 $(INSTALL) -c -m 755 $(STRIP) setpci$(EXEEXT) $(DESTDIR)$(SBINDIR)
153 $(INSTALL) -c -m 755 update-pciids $(DESTDIR)$(SBINDIR)
154 ifneq ($(IDSDIR),)
155 $(INSTALL) -c -m 644 $(PCI_IDS) $(DESTDIR)$(IDSDIR)
156 else
157 $(INSTALL) -c -m 644 $(PCI_IDS) $(DESTDIR)$(SBINDIR)
158 endif
159 $(INSTALL) -c -m 644 lspci.8 setpci.8 update-pciids.8 $(DESTDIR)$(MANDIR)/man8
160 $(INSTALL) -c -m 644 pcilib.7 $(DESTDIR)$(MANDIR)/man7
161 $(INSTALL) -c -m 644 pci.ids.5 $(DESTDIR)$(MANDIR)/man5
162 ifeq ($(SHARED),yes)
163 ifeq ($(LIBEXT),dylib)
164 ln -sf $(PCILIB) $(DESTDIR)$(LIBDIR)/$(LIBNAME).$(ABI_VERSION).$(LIBEXT)
165 else ifeq ($(LIBEXT),so)
166 ln -sf $(PCILIB) $(DESTDIR)$(LIBDIR)/$(LIBNAME).$(LIBEXT).$(ABI_VERSION)
167 endif
168 endif
169
170 ifeq ($(SHARED),yes)
171 install: install-pcilib
172 endif
173
174 install-pcilib: lib/$(PCILIB)
175 $(DIRINSTALL) -m 755 $(DESTDIR)$(LIBDIR)
176 ifeq ($(SHARED)_$(LIBEXT),yes_dll)
177 # DLL library must have executable flag on disk and be placed in same directory as where are EXE files
178 $(DIRINSTALL) -m 755 $(DESTDIR)$(SBINDIR)
179 $(INSTALL) -c -m 755 lib/$(PCILIB) $(DESTDIR)$(SBINDIR)
180 else
181 $(INSTALL) -c -m 644 lib/$(PCILIB) $(DESTDIR)$(LIBDIR)
182 endif
183
184 install-lib: $(PCIINC_INS) install-pcilib
185 $(DIRINSTALL) -m 755 $(DESTDIR)$(INCDIR)/pci $(DESTDIR)$(PKGCFDIR)
186 $(INSTALL) -c -m 644 $(PCIINC_INS) $(DESTDIR)$(INCDIR)/pci
187 $(INSTALL) -c -m 644 lib/$(PCILIBPC) $(DESTDIR)$(PKGCFDIR)
188 ifneq ($(PCIIMPLIB),$(PCILIB))
189 $(INSTALL) -c -m 644 lib/$(PCIIMPLIB) $(DESTDIR)$(LIBDIR)
190 endif
191 ifneq ($(PCIIMPDEF),)
192 $(INSTALL) -c -m 644 lib/$(PCIIMPDEF) $(DESTDIR)$(LIBDIR)
193 endif
194 ifeq ($(SHARED),yes)
195 ifeq ($(LIBEXT),dylib)
196 ln -sf $(PCILIB) $(DESTDIR)$(LIBDIR)/$(LIBNAME).$(ABI_VERSION).$(LIBEXT)
197 ln -sf $(LIBNAME).$(ABI_VERSION).$(LIBEXT) $(DESTDIR)$(LIBDIR)/$(LIBNAME).$(LIBEXT)
198 else ifeq ($(LIBEXT),so)
199 ln -sf $(PCILIB) $(DESTDIR)$(LIBDIR)/$(LIBNAME).$(LIBEXT).$(ABI_VERSION)
200 ln -sf $(LIBNAME).$(LIBEXT).$(ABI_VERSION) $(DESTDIR)$(LIBDIR)/$(LIBNAME).$(LIBEXT)
201 endif
202 endif
203
204 uninstall: all
205 rm -f $(DESTDIR)$(SBINDIR)/lspci$(EXEEXT) $(DESTDIR)$(SBINDIR)/setpci$(EXEEXT) $(DESTDIR)$(SBINDIR)/update-pciids
206 ifneq ($(IDSDIR),)
207 rm -f $(DESTDIR)$(IDSDIR)/$(PCI_IDS)
208 else
209 rm -f $(DESTDIR)$(SBINDIR)/$(PCI_IDS)
210 endif
211 rm -f $(DESTDIR)$(MANDIR)/man8/lspci.8 $(DESTDIR)$(MANDIR)/man8/setpci.8 $(DESTDIR)$(MANDIR)/man8/update-pciids.8
212 rm -f $(DESTDIR)$(MANDIR)/man7/pcilib.7
213 rm -f $(DESTDIR)$(MANDIR)/man5/pci.ids.5
214 ifeq ($(SHARED)_$(LIBEXT),yes_dll)
215 rm -f $(DESTDIR)$(SBINDIR)/$(PCILIB)
216 else
217 rm -f $(DESTDIR)$(LIBDIR)/$(PCILIB)
218 endif
219 rm -f $(DESTDIR)$(PKGCFDIR)/$(PCILIBPC)
220 rm -f $(addprefix $(DESTDIR)$(INCDIR)/pci/,$(notdir $(PCIINC_INS)))
221 ifneq ($(PCIIMPLIB),$(PCILIB))
222 rm -f $(DESTDIR)$(LIBDIR)/$(PCIIMPLIB)
223 endif
224 ifneq ($(PCIIMPDEF),)
225 rm -f $(DESTDIR)$(LIBDIR)/$(PCIIMPDEF)
226 endif
227 ifeq ($(SHARED),yes)
228 ifneq ($(LIBEXT),dll)
229 rm -f $(DESTDIR)$(LIBDIR)/$(LIBNAME).$(LIBEXT)
230 ifeq ($(LIBEXT),dylib)
231 rm -f $(DESTDIR)$(LIBDIR)/$(LIBNAME).$(ABI_VERSION).$(LIBEXT)
232 else
233 rm -f $(DESTDIR)$(LIBDIR)/$(LIBNAME).$(LIBEXT).$(ABI_VERSION)
234 endif
235 endif
236 endif
237
238 pci.ids.gz: pci.ids
239 gzip -9n <$< >$@
240
241 .PHONY: all clean distclean install install-lib uninstall force tags TAGS