]> mj.ucw.cz Git - pciutils.git/blob - Makefile
Various PCIutils changes accumulated over last two weeks:
[pciutils.git] / Makefile
1 # $Id: Makefile,v 1.18 1999/07/07 11:23:03 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=2.1-pre4
13 SUFFIX=
14 #SUFFIX=-alpha
15 DATE=99-05-19
16
17 export
18
19 all: lib lspci setpci lspci.8 setpci.8
20
21 lib: lib/config.h
22         $(MAKE) -C lib all
23
24 lib/config.h:
25         cd lib && ./configure $(PREFIX) $(VERSION)
26
27 lspci: lspci.o common.o lib/libpci.a
28 setpci: setpci.o common.o lib/libpci.a
29
30 lspci.o: lspci.c pciutils.h lib/libpci.a
31 setpci.o: setpci.c pciutils.h lib/libpci.a
32 common.o: common.c pciutils.h lib/libpci.a
33
34 %.8: %.man
35         sed <$< >$@ "s/@TODAY@/`date -d $(DATE) '+%d %B %Y'`/;s/@VERSION@/pciutils-$(VERSION)$(SUFFIX)/"
36
37 clean:
38         rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
39         rm -f lspci setpci lib/config.* *.8
40         rm -rf dist
41
42 install: all
43         install -m 755 -s lspci setpci $(ROOT)/sbin
44         install -m 644 pci.ids $(PREFIX)/share
45         install -m 644 lspci.8 setpci.8 $(PREFIX)/man/man8
46         # Remove relics from old versions
47         rm -f $(ROOT)/etc/pci.ids
48
49 uninstall: all
50         rm -f $(ROOT)/sbin/lspci $(ROOT)/sbin/setpci
51         rm -f $(PREFIX)/pci.ids
52         rm -f $(PREFIX)/man/man8/lspci.8 $(PREFIX)/man/man8/setpci.8
53
54 release:
55         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
56         sed "s/^\\(Version:[    ]*\\)[0-9.]*/\\1$(VERSION)/" <pciutils.spec >pciutils.spec.new
57         sed "s/\\(, version \\).*\./\\1$(VERSION)$(SUFFIX)./" <README >README.new
58         mv pciutils.lsm.new pciutils.lsm
59         mv pciutils.spec.new pciutils.spec
60         mv README.new README
61
62 REL=pciutils-$(VERSION)
63
64 dist: clean
65         mkdir dist
66         cp -a . dist/$(REL)
67         rm -rf `find dist/$(REL) -name CVS -o -name tmp` dist/$(REL)/dist
68         [ -f dist/$(REL)/lib/header.h ] || cp /usr/src/linux/include/linux/pci.h dist/$(REL)/lib/header.h
69         cd dist ; tar czvvf /tmp/$(REL).tar.gz $(REL)
70
71 .PHONY: all lib clean install dist man release