]> mj.ucw.cz Git - pciutils.git/blob - Makefile
bb58e3640573f3de5b3ae21259710ac387c13a0a
[pciutils.git] / Makefile
1 # $Id: Makefile,v 1.7 1998/03/31 21:02:12 mj Exp $
2 # Makefile for Linux PCI Utilities
3 # (c) 1998 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
4
5 ARCH=$(shell uname -m | sed -e 's/i.86/i386/' -e 's/sun4u/sparc64/' | tr 'a-z' 'A-Z')
6 KERN_H=$(shell if [ ! -f pci.h ] ; then echo '-DKERNEL_PCI_H' ; fi)
7 OPT=-O2 -fomit-frame-pointer
8 CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Wno-unused -Werror -DARCH_$(ARCH) $(KERN_H)
9
10 PREFIX=/
11 MANPREFIX=/usr
12
13 all: lspci
14
15 #all: lspci setpci
16
17 lspci: lspci.o names.o filter.o
18
19 lspci.o: lspci.c pciutils.h
20 names.o: names.c pciutils.h
21 filter.o: filter.c pciutils.h
22
23 setpci: setpci.o filter.o
24
25 setpci.o: setpci.c
26
27 clean:
28         rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
29         rm -f lspci setpci pci.h
30
31 install: all
32         install -o root -g root -m 755 -s lspci $(PREFIX)/sbin
33         install -o root -g root -m 644 pci.ids $(PREFIX)/etc
34         install -o root -g root -m 644 lspci.8 $(MANPREFIX)/man/man8
35
36 dist: clean
37         cp /usr/src/linux/include/linux/pci.h .
38         sh -c 'X=`pwd` ; X=`basename $$X` ; cd .. ; tar czvvf /tmp/$$X.tar.gz $$X --exclude CVS --exclude tmp'
39         rm -f pci.h