]> mj.ucw.cz Git - pciutils.git/blob - Makefile
A lot of subsystem ID's from Dave Jones.
[pciutils.git] / Makefile
1 # $Id: Makefile,v 1.24 1999/10/15 08:43:45 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 VERSION=2.1-pre8
10 SUFFIX=
11 #SUFFIX=-alpha
12 DATE=1999-10-15
13
14 ifeq ($(shell uname),FreeBSD)
15 ROOT=/usr/local
16 PREFIX=/usr/local
17 else
18 ROOT=/
19 PREFIX=/usr
20 endif
21
22 export
23
24 all: lib lspci setpci lspci.8 setpci.8
25
26 lib: lib/config.h
27         $(MAKE) -C lib all
28
29 lib/config.h:
30         cd lib && ./configure $(PREFIX) $(VERSION)
31
32 lspci: lspci.o common.o lib/libpci.a
33 setpci: setpci.o common.o lib/libpci.a
34
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
38
39 %.8: %.man
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)/"
41
42 clean:
43         rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
44         rm -f lspci setpci lib/config.* *.8
45         rm -rf dist
46
47 install: all
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
54
55 uninstall: all
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
59
60 release:
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
66         mv README.new README
67
68 REL=pciutils-$(VERSION)
69
70 dist: clean
71         mkdir dist
72         cp -a . dist/$(REL)
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)
76
77 .PHONY: all lib clean install dist man release