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