1 # $Id: Makefile,v 1.19 1999/07/20 12:13:39 mj Exp $
2 # Makefile for Linux PCI Utilities
3 # (c) 1998--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
5 OPT=-O2 -fomit-frame-pointer
7 CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Werror
19 all: lib lspci setpci lspci.8 setpci.8
25 cd lib && ./configure $(PREFIX) $(VERSION)
27 lspci: lspci.o common.o lib/libpci.a
28 setpci: setpci.o common.o lib/libpci.a
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
35 sed <$< >$@ "s/@TODAY@/`date -d $(DATE) '+%d %B %Y'`/;s/@VERSION@/pciutils-$(VERSION)$(SUFFIX)/"
38 rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
39 rm -f lspci setpci lib/config.* *.8
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
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
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
62 REL=pciutils-$(VERSION)
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)
71 .PHONY: all lib clean install dist man release