]> mj.ucw.cz Git - pciutils.git/blob - Makefile
5a9b117741c76c6902e6fc837a4237141eaf8985
[pciutils.git] / Makefile
1 # $Id: Makefile,v 1.32 2000/04/17 15:59:16 mj Exp $
2 # Makefile for Linux PCI Utilities
3 # (c) 1998--2000 Martin Mares <mj@suse.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.6
10 SUFFIX=
11 #SUFFIX=-alpha
12 DATE=2000-04-17
13
14 ifeq ($(shell uname),FreeBSD)
15 ROOT=/usr/local
16 PREFIX=/usr/local
17 else
18 ROOT=/
19 PREFIX=/usr
20 endif
21 MANDIR=$(shell if [ -d $(PREFIX)/share/man ] ; then echo $(PREFIX)/share/man ; else echo $(PREFIX)/man ; fi)
22
23 export
24
25 all: lib lspci setpci lspci.8 setpci.8
26
27 lib: lib/config.h
28         $(MAKE) -C lib all
29
30 lib/config.h:
31         cd lib && ./configure $(PREFIX) $(VERSION)
32
33 lspci: lspci.o common.o lib/libpci.a
34 setpci: setpci.o common.o lib/libpci.a
35
36 lspci.o: lspci.c pciutils.h lib/libpci.a
37 setpci.o: setpci.c pciutils.h lib/libpci.a
38 common.o: common.c pciutils.h lib/libpci.a
39
40 %.8: %.man
41         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)/"
42
43 clean:
44         rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
45         rm -f lspci setpci lib/config.* *.8
46         rm -rf dist
47
48 install: all
49         # -c is ignored on Linux, but required on FreeBSD
50         install -d -m 755 $(ROOT)/sbin $(PREFIX)/share $(MANDIR)/man8
51         install -c -m 755 -s lspci setpci $(ROOT)/sbin
52         install -c -m 644 pci.ids $(PREFIX)/share
53         install -c -m 644 lspci.8 setpci.8 $(MANDIR)/man8
54         # Remove relics from old versions
55         rm -f $(ROOT)/etc/pci.ids
56
57 uninstall: all
58         rm -f $(ROOT)/sbin/lspci $(ROOT)/sbin/setpci
59         rm -f $(PREFIX)/pci.ids
60         rm -f $(PREFIX)/man/man8/lspci.8 $(PREFIX)/man/man8/setpci.8
61
62 release:
63         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
64         sed "s/^\\(Version:[    ]*\\)[0-9.]*/\\1$(VERSION)/" <pciutils.spec >pciutils.spec.new
65         sed "s/\\(, version \\).*\./\\1$(VERSION)$(SUFFIX)./" <README >README.new
66         mv pciutils.lsm.new pciutils.lsm
67         mv pciutils.spec.new pciutils.spec
68         mv README.new README
69
70 REL=pciutils-$(VERSION)
71
72 dist: clean
73         mkdir dist
74         cp -a . dist/$(REL)
75         rm -rf `find dist/$(REL) -name CVS -o -name tmp` dist/$(REL)/dist
76         [ -f dist/$(REL)/lib/header.h ] || cp /usr/src/linux/include/linux/pci.h dist/$(REL)/lib/header.h
77         cd dist ; tar czvvf /tmp/$(REL).tar.gz $(REL)
78
79 .PHONY: all lib clean install dist man release