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