1 # $Id: Makefile,v 1.44 2002/12/27 19:02:20 mj Exp $
2 # Makefile for Linux PCI Utilities
3 # (c) 1998--2002 Martin Mares <mj@ucw.cz>
5 OPT=-O2 -fomit-frame-pointer
7 CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes
16 ifeq ($(shell uname),FreeBSD)
20 ifeq ($(shell uname),NetBSD)
25 ifeq ($(shell uname),AIX)
37 MANDIR=$(shell if [ -d $(PREFIX)/share/man ] ; then echo $(PREFIX)/share/man ; else echo $(PREFIX)/man ; fi)
38 DISTTMP=/tmp/pciutils-dist
42 all: lib lspci setpci lspci.8 setpci.8 pci.ids
48 cd lib && ./configure $(PREFIX) $(VERSION)
50 lspci: lspci.o common.o lib/$(PCILIB)
51 setpci: setpci.o common.o lib/$(PCILIB)
53 lspci.o: lspci.c pciutils.h
54 setpci.o: setpci.c pciutils.h
55 common.o: common.c pciutils.h
58 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)$(SUFFIX)/"
61 rm -f `find . -name "*~" -o -name "*.[oa]" -o -name "\#*\#" -o -name TAGS -o -name core`
62 rm -f lspci setpci lib/config.* *.8
66 # -c is ignored on Linux, but required on FreeBSD
67 $(DIRINSTALL) -m 755 $(ROOT)/sbin $(PREFIX)/share $(MANDIR)/man8
68 $(INSTALL) -c -m 755 -s lspci setpci $(ROOT)/sbin
69 if [ ! -f $(PREFIX)/share/pci.ids -o pci.ids -nt $(PREFIX)/share/pci.ids ] ; then \
70 $(INSTALL) -c -m 644 pci.ids $(PREFIX)/share ; \
71 elif [ -f $(PREFIX)/share/pci.ids ] ; then \
72 echo "$(PREFIX)/share/pci.ids is same or newer than the version to be installed, skipping." ; \
74 $(INSTALL) -c -m 644 lspci.8 setpci.8 $(MANDIR)/man8
75 # Remove relics from old versions
76 rm -f $(ROOT)/etc/pci.ids
79 rm -f $(ROOT)/sbin/lspci $(ROOT)/sbin/setpci
80 rm -f $(PREFIX)/share/pci.ids
81 rm -f $(PREFIX)/man/man8/lspci.8 $(PREFIX)/man/man8/setpci.8
84 if [ ! -f pci.ids.orig ] ; then mv pci.ids pci.ids.orig ; fi
85 wget http://pciids.sf.net/pci.ids.bz2
89 cp ~/tree/pciids/pci.ids pci.ids
92 @ [ -f pci.ids ] || echo >&2 "The pci.ids file is no longer part of the CVS. Please do make update-ids to download them." && false
95 sed "s/^\\(Version:[ ]*\\)[0-9.]*/\\1$(VERSION)/;s/^\\(Entered-date:[ ]*\\)[0-9]*/\\1`date -d$(DATE) '+%y%m%d'`/;s/\\(pciutils-\\)[0-9.]*/\\1$(VERSION)\\./" <pciutils.lsm >pciutils.lsm.new
96 sed "s/^\\(Version:[ ]*\\)[0-9.]*/\\1$(VERSION)/" <pciutils.spec >pciutils.spec.new
97 sed "s/\\(, version \\).*\./\\1$(VERSION)$(SUFFIX)./" <README >README.new
98 mv pciutils.lsm.new pciutils.lsm
99 mv pciutils.spec.new pciutils.spec
102 REL=pciutils-$(VERSION)$(SUFFIX)
107 cp -a . $(DISTTMP)/$(REL)
108 rm -rf `find $(DISTTMP)/$(REL) -name CVS -o -name tmp -o -name maint`
109 [ -f $(DISTTMP)/$(REL)/lib/header.h ] || cp /usr/src/linux/include/linux/pci.h dist/$(REL)/lib/header.h
110 cd $(DISTTMP) ; tar czvvf /tmp/$(REL).tar.gz $(REL)
116 .PHONY: all lib clean install uninstall dist man release upload update-ids get-ids