]> mj.ucw.cz Git - pciutils.git/blob - Makefile
3037cc17d474b06a8e4bfe8b017b39ed5b59dee6
[pciutils.git] / Makefile
1 # $Id: Makefile,v 1.15 1999/04/18 19:10:37 mj Exp $
2 # Makefile for Linux PCI Utilities
3 # (c) 1998--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
4
5 OPT=-O2 -fomit-frame-pointer
6 #OPT=-O2 -g
7 CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Werror
8
9 ROOT=/
10 PREFIX=/usr
11
12 VERSION=1.99.5
13 SUFFIX=-alpha
14 DATE=99-04-18
15
16 export
17
18 all: lib lspci setpci lspci.8 setpci.8
19
20 lib: lib/config.h
21         $(MAKE) -C lib all
22
23 lib/config.h:
24         cd lib && ./configure $(PREFIX) $(VERSION)
25
26 lspci: lspci.o common.o lib/libpci.a
27 setpci: setpci.o common.o lib/libpci.a
28
29 lspci.o: lspci.c pciutils.h lib/libpci.a
30 setpci.o: setpci.c pciutils.h lib/libpci.a
31 common.o: common.c pciutils.h lib/libpci.a
32
33 %.8: %.man
34         sed <$< >$@ "s/@TODAY@/`date -d $(DATE) '+%d %B %Y'`/;s/@VERSION@/pciutils-$(VERSION)$(SUFFIX)/"
35
36 clean:
37         rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
38         rm -f lspci setpci lib/config.* *.8
39         rm -rf dist
40
41 install: all
42         install -m 755 -s lspci setpci $(ROOT)/sbin
43         install -m 644 pci.ids $(PREFIX)/share
44         install -m 644 lspci.8 setpci.8 $(PREFIX)/man/man8
45         # Remove relics from old versions
46         rm -f $(ROOT)/etc/pci.ids
47
48 release:
49         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
50         sed "s/^\\(Version:[    ]*\\)[0-9.]*/\\1$(VERSION)/" <pciutils.spec >pciutils.spec.new
51         sed "s/\\(, version \\).*\./\\1$(VERSION)$(SUFFIX)./" <README >README.new
52         mv pciutils.lsm.new pciutils.lsm
53         mv pciutils.spec.new pciutils.spec
54         mv README.new README
55
56 REL=pciutils-$(VERSION)
57
58 dist: clean
59         mkdir dist
60         cp -a . dist/$(REL)
61         rm -rf `find dist/$(REL) -name CVS -o -name tmp` dist/$(REL)/dist
62         [ -f dist/$(REL)/lib/header.h ] || cp /usr/src/linux/include/linux/pci.h dist/$(REL)/lib/header.h
63         cd dist ; tar czvvf /tmp/$(REL).tar.gz $(REL)
64
65 .PHONY: all lib clean install dist man release