1 # $Id: Makefile,v 1.22 1999/09/22 08:00:51 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
14 ifeq ($(shell uname),FreeBSD)
24 all: lib lspci setpci lspci.8 setpci.8
30 cd lib && ./configure $(PREFIX) $(VERSION)
32 lspci: lspci.o common.o lib/libpci.a
33 setpci: setpci.o common.o lib/libpci.a
35 lspci.o: lspci.c pciutils.h lib/libpci.a
36 setpci.o: setpci.c pciutils.h lib/libpci.a
37 common.o: common.c pciutils.h lib/libpci.a
40 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)/"
43 rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
44 rm -f lspci setpci lib/config.* *.8
48 # -c is ignored on Linux, but required on FreeBSD
49 install -c -m 755 -s lspci setpci $(ROOT)/sbin
50 install -c -m 644 pci.ids $(PREFIX)/share
51 install -c -m 644 lspci.8 setpci.8 $(PREFIX)/man/man8
52 # Remove relics from old versions
53 rm -f $(ROOT)/etc/pci.ids
56 rm -f $(ROOT)/sbin/lspci $(ROOT)/sbin/setpci
57 rm -f $(PREFIX)/pci.ids
58 rm -f $(PREFIX)/man/man8/lspci.8 $(PREFIX)/man/man8/setpci.8
61 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
62 sed "s/^\\(Version:[ ]*\\)[0-9.]*/\\1$(VERSION)/" <pciutils.spec >pciutils.spec.new
63 sed "s/\\(, version \\).*\./\\1$(VERSION)$(SUFFIX)./" <README >README.new
64 mv pciutils.lsm.new pciutils.lsm
65 mv pciutils.spec.new pciutils.spec
68 REL=pciutils-$(VERSION)
73 rm -rf `find dist/$(REL) -name CVS -o -name tmp` dist/$(REL)/dist
74 [ -f dist/$(REL)/lib/header.h ] || cp /usr/src/linux/include/linux/pci.h dist/$(REL)/lib/header.h
75 cd dist ; tar czvvf /tmp/$(REL).tar.gz $(REL)
77 .PHONY: all lib clean install dist man release