1# Makefile for The PCI Utilities 2# (c) 1998--2013 Martin Mares <[email protected]> 3 4OPT=-O2 5CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes 6 7VERSION=3.2.0 8DATE=2013-04-19 9 10# Host OS and release (override if you are cross-compiling) 11HOST= 12RELEASE= 13CROSS_COMPILE= 14 15# Support for compressed pci.ids (yes/no, default: detect) 16ZLIB= 17 18# Support for resolving ID's by DNS (yes/no, default: detect) 19DNS= 20 21# Build libpci as a shared library (yes/no; or local for testing; requires GCC) 22SHARED=no 23 24# Use libkmod to resolve kernel modules on Linux (yes/no, default: detect) 25LIBKMOD= 26 27# ABI version suffix in the name of the shared library 28# (as we use proper symbol versioning, this seldom needs changing) 29ABI_VERSION=.3 30 31# Installation directories 32PREFIX=/usr/local 33SBINDIR=$(PREFIX)/sbin 34SHAREDIR=$(PREFIX)/share 35IDSDIR=$(SHAREDIR) 36MANDIR:=$(shell if [ -d $(PREFIX)/share/man ] ; then echo $(PREFIX)/share/man ; else echo $(PREFIX)/man ; fi) 37INCDIR=$(PREFIX)/include 38LIBDIR=$(PREFIX)/lib 39PKGCFDIR=$(LIBDIR)/pkgconfig 40 41# Commands 42INSTALL=install 43DIRINSTALL=install -d 44STRIP=-s 45CC=$(CROSS_COMPILE)gcc 46AR=$(CROSS_COMPILE)ar 47RANLIB=$(CROSS_COMPILE)ranlib 48 49# Base name of the library (overriden on NetBSD, which has its own libpci) 50LIBNAME=libpci 51 52-include lib/config.mk 53 54PCIINC=lib/config.h lib/header.h lib/pci.h lib/types.h lib/sysdep.h 55PCIINC_INS=lib/config.h lib/header.h lib/pci.h lib/types.h 56 57export 58 59all: lib/$(PCILIB) lspci setpci example lspci.8 setpci.8 pcilib.7 update-pciids update-pciids.8 $(PCI_IDS) 60 61lib/$(PCILIB): $(PCIINC) force 62 $(MAKE) -C lib all 63 64force: 65 66lib/config.h lib/config.mk: 67 cd lib && ./configure 68 69lspci: lspci.o ls-vpd.o ls-caps.o ls-ecaps.o ls-kernel.o ls-tree.o ls-map.o common.o lib/$(PCILIB) 70setpci: setpci.o common.o lib/$(PCILIB) 71 72LSPCIINC=lspci.h pciutils.h $(PCIINC) 73lspci.o: lspci.c $(LSPCIINC) 74ls-vpd.o: ls-vpd.c $(LSPCIINC) 75ls-caps.o: ls-caps.c $(LSPCIINC) 76ls-ecaps.o: ls-ecaps.c $(LSPCIINC) 77ls-kernel.o: ls-kernel.c $(LSPCIINC) 78ls-tree.o: ls-tree.c $(LSPCIINC) 79ls-map.o: ls-map.c $(LSPCIINC) 80 81setpci.o: setpci.c pciutils.h $(PCIINC) 82common.o: common.c pciutils.h $(PCIINC) 83 84lspci: LDLIBS+=$(LIBKMOD_LIBS) 85ls-kernel.o: CFLAGS+=$(LIBKMOD_CFLAGS) 86 87update-pciids: update-pciids.sh 88 sed <$< >$@ "s@^DEST=.*@DEST=$(IDSDIR)/$(PCI_IDS)@;s@^PCI_COMPRESSED_IDS=.*@PCI_COMPRESSED_IDS=$(PCI_COMPRESSED_IDS)@" 89 chmod +x $@ 90 91# The example of use of libpci 92example: example.o lib/$(PCILIB) 93example.o: example.c $(PCIINC) 94 95%: %.o 96 $(CC) $(LDFLAGS) $(TARGET_ARCH) $^ $(LDLIBS) -o $@ 97 98%.8 %.7: %.man 99 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)#" 100 101clean: 102 rm -f `find . -name "*~" -o -name "*.[oa]" -o -name "\#*\#" -o -name TAGS -o -name core -o -name "*.orig"` 103 rm -f update-pciids lspci setpci example lib/config.* *.[78] pci.ids.* lib/*.pc lib/*.so lib/*.so.* 104 rm -rf maint/dist 105 106distclean: clean 107 108install: all 109# -c is ignored on Linux, but required on FreeBSD 110 $(DIRINSTALL) -m 755 $(DESTDIR)$(SBINDIR) $(DESTDIR)$(IDSDIR) $(DESTDIR)$(MANDIR)/man8 $(DESTDIR)$(MANDIR)/man7 111 $(INSTALL) -c -m 755 $(STRIP) lspci setpci $(DESTDIR)$(SBINDIR) 112 $(INSTALL) -c -m 755 update-pciids $(DESTDIR)$(SBINDIR) 113 $(INSTALL) -c -m 644 $(PCI_IDS) $(DESTDIR)$(IDSDIR) 114 $(INSTALL) -c -m 644 lspci.8 setpci.8 update-pciids.8 $(DESTDIR)$(MANDIR)/man8 115 $(INSTALL) -c -m 644 pcilib.7 $(DESTDIR)$(MANDIR)/man7 116ifeq ($(SHARED),yes) 117 ln -sf $(PCILIB) $(DESTDIR)$(LIBDIR)/$(LIBNAME).so$(ABI_VERSION) 118endif 119 120ifeq ($(SHARED),yes) 121install: install-pcilib 122endif 123 124install-pcilib: lib/$(PCILIB) 125 $(DIRINSTALL) -m 755 $(DESTDIR)$(LIBDIR) 126 $(INSTALL) -c -m 644 lib/$(PCILIB) $(DESTDIR)$(LIBDIR) 127 128install-lib: $(PCIINC_INS) lib/$(PCILIBPC) install-pcilib 129 $(DIRINSTALL) -m 755 $(DESTDIR)$(INCDIR)/pci $(DESTDIR)$(PKGCFDIR) 130 $(INSTALL) -c -m 644 $(PCIINC_INS) $(DESTDIR)$(INCDIR)/pci 131 $(INSTALL) -c -m 644 lib/$(PCILIBPC) $(DESTDIR)$(PKGCFDIR) 132ifeq ($(SHARED),yes) 133 ln -sf $(LIBNAME).so$(ABI_VERSION) $(DESTDIR)$(LIBDIR)/$(LIBNAME).so 134endif 135 136uninstall: all 137 rm -f $(DESTDIR)$(SBINDIR)/lspci $(DESTDIR)$(SBINDIR)/setpci $(DESTDIR)$(SBINDIR)/update-pciids 138 rm -f $(DESTDIR)$(IDSDIR)/$(PCI_IDS) 139 rm -f $(DESTDIR)$(MANDIR)/man8/lspci.8 $(DESTDIR)$(MANDIR)/man8/setpci.8 $(DESTDIR)$(MANDIR)/man8/update-pciids.8 140 rm -f $(DESTDIR)$(MANDIR)/man7/pcilib.7 141ifeq ($(SHARED),yes) 142 rm -f $(DESTDIR)$(LIBDIR)/$(PCILIB) $(DESTDIR)$(LIBDIR)/$(LIBNAME).so$(ABI_VERSION) 143endif 144 145pci.ids.gz: pci.ids 146 gzip -9n <$< >$@ 147 148.PHONY: all clean distclean install install-lib uninstall force 149