]> git.ipfire.org Git - thirdparty/pciutils.git/blob - Makefile
Released as pciutils-2.1.10.
[thirdparty/pciutils.git] / Makefile
1 # $Id: Makefile,v 1.42 2002/03/30 15:42:16 mj Exp $
2 # Makefile for Linux PCI Utilities
3 # (c) 1998--2002 Martin Mares <mj@ucw.cz>
4
5 OPT=-O2 -fomit-frame-pointer
6 #OPT=-O2 -g
7 CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes
8
9 VERSION=2.1.10
10 #SUFFIX=-pre2
11 #SUFFIX=-alpha
12 DATE=2002-03-30
13
14 INSTALL=install
15 DIRINSTALL=install -d
16 ifeq ($(shell uname),FreeBSD)
17 ROOT=/usr/local
18 PREFIX=/usr/local
19 else
20 ifeq ($(shell uname),AIX)
21 ROOT=/usr/local
22 PREFIX=/usr/local
23 CFLAGS=-g
24 INSTALL=installbsd
25 DIRINSTALL=mkdir -p
26 else
27 ROOT=/
28 PREFIX=/usr
29 endif
30 endif
31 MANDIR=$(shell if [ -d $(PREFIX)/share/man ] ; then echo $(PREFIX)/share/man ; else echo $(PREFIX)/man ; fi)
32 DISTTMP=/tmp/pciutils-dist
33
34 export
35
36 all: lib lspci setpci lspci.8 setpci.8 pci.ids
37
38 lib: lib/config.h
39 $(MAKE) -C lib all
40
41 lib/config.h:
42 cd lib && ./configure $(PREFIX) $(VERSION)
43
44 lspci: lspci.o common.o lib/libpci.a
45 setpci: setpci.o common.o lib/libpci.a
46
47 lspci.o: lspci.c pciutils.h lib/libpci.a
48 setpci.o: setpci.c pciutils.h lib/libpci.a
49 common.o: common.c pciutils.h lib/libpci.a
50
51 %.8: %.man
52 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)/"
53
54 clean:
55 rm -f `find . -name "*~" -o -name "*.[oa]" -o -name "\#*\#" -o -name TAGS -o -name core`
56 rm -f lspci setpci lib/config.* *.8
57 rm -rf dist
58
59 install: all
60 # -c is ignored on Linux, but required on FreeBSD
61 $(DIRINSTALL) -m 755 $(ROOT)/sbin $(PREFIX)/share $(MANDIR)/man8
62 $(INSTALL) -c -m 755 -s lspci setpci $(ROOT)/sbin
63 if [ ! -f $(PREFIX)/share/pci.ids -o pci.ids -nt $(PREFIX)/share/pci.ids ] ; then \
64 $(INSTALL) -c -m 644 pci.ids $(PREFIX)/share ; \
65 elif [ -f $(PREFIX)/share/pci.ids ] ; then \
66 echo "$(PREFIX)/share/pci.ids is same or newer than the version to be installed, skipping." ; \
67 fi
68 $(INSTALL) -c -m 644 lspci.8 setpci.8 $(MANDIR)/man8
69 # Remove relics from old versions
70 rm -f $(ROOT)/etc/pci.ids
71
72 uninstall: all
73 rm -f $(ROOT)/sbin/lspci $(ROOT)/sbin/setpci
74 rm -f $(PREFIX)/share/pci.ids
75 rm -f $(PREFIX)/man/man8/lspci.8 $(PREFIX)/man/man8/setpci.8
76
77 update-ids:
78 if [ ! -f pci.ids.orig ] ; then mv pci.ids pci.ids.orig ; fi
79 wget http://pciids.sf.net/pci.ids.bz2
80 bzip2 -d pci.ids.bz2
81
82 get-ids:
83 cp ~/tree/pciids/pci.ids pci.ids
84
85 pci.ids:
86 @ [ -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
87
88 release:
89 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
90 sed "s/^\\(Version:[ ]*\\)[0-9.]*/\\1$(VERSION)/" <pciutils.spec >pciutils.spec.new
91 sed "s/\\(, version \\).*\./\\1$(VERSION)$(SUFFIX)./" <README >README.new
92 mv pciutils.lsm.new pciutils.lsm
93 mv pciutils.spec.new pciutils.spec
94 mv README.new README
95
96 REL=pciutils-$(VERSION)$(SUFFIX)
97
98 dist: clean pci.ids
99 rm -rf $(DISTTMP)
100 mkdir $(DISTTMP)
101 cp -a . $(DISTTMP)/$(REL)
102 rm -rf `find $(DISTTMP)/$(REL) -name CVS -o -name tmp -o -name maint`
103 [ -f $(DISTTMP)/$(REL)/lib/header.h ] || cp /usr/src/linux/include/linux/pci.h dist/$(REL)/lib/header.h
104 cd $(DISTTMP) ; tar czvvf /tmp/$(REL).tar.gz $(REL)
105 rm -rf $(DISTTMP)
106
107 upload: dist
108 maint/upload $(REL)
109
110 .PHONY: all lib clean install uninstall dist man release upload update-ids get-ids