]> mj.ucw.cz Git - pciutils.git/blobdiff - Makefile
Some more PCI ID's from Michael Neuffer.
[pciutils.git] / Makefile
index bb58e3640573f3de5b3ae21259710ac387c13a0a..cda5429ecf8d5ba9edab01421b7e58df4401ed1b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,39 +1,65 @@
-# $Id: Makefile,v 1.7 1998/03/31 21:02:12 mj Exp $
+# $Id: Makefile,v 1.14 1999/02/28 20:23:05 mj Exp $
 # Makefile for Linux PCI Utilities
-# (c) 1998 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
+# (c) 1998--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
 
-ARCH=$(shell uname -m | sed -e 's/i.86/i386/' -e 's/sun4u/sparc64/' | tr 'a-z' 'A-Z')
-KERN_H=$(shell if [ ! -f pci.h ] ; then echo '-DKERNEL_PCI_H' ; fi)
 OPT=-O2 -fomit-frame-pointer
-CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Wno-unused -Werror -DARCH_$(ARCH) $(KERN_H)
+#OPT=-O2 -g
+CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Werror
 
-PREFIX=/
-MANPREFIX=/usr
+ROOT=/
+PREFIX=/usr
 
-all: lspci
+VERSION=1.99.4
+SUFFIX=-alpha
+DATE=99-01-28
 
-#all: lspci setpci
+export
 
-lspci: lspci.o names.o filter.o
+all: lib lspci setpci lspci.8 setpci.8
 
-lspci.o: lspci.c pciutils.h
-names.o: names.c pciutils.h
-filter.o: filter.c pciutils.h
+lib: lib/config.h
+       $(MAKE) -C lib all
 
-setpci: setpci.o filter.o
+lib/config.h:
+       cd lib && ./configure $(PREFIX) $(VERSION)
 
-setpci.o: setpci.c
+lspci: lspci.o common.o lib/libpci.a
+setpci: setpci.o common.o lib/libpci.a
+
+lspci.o: lspci.c pciutils.h lib/libpci.a
+setpci.o: setpci.c pciutils.h lib/libpci.a
+common.o: common.c pciutils.h lib/libpci.a
+
+%.8: %.man
+       sed <$< >$@ "s/@TODAY@/`date -d $(DATE) '+%d %B %Y'`/;s/@VERSION@/pciutils-$(VERSION)$(SUFFIX)/"
 
 clean:
        rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
-       rm -f lspci setpci pci.h
+       rm -f lspci setpci lib/config.* *.8
+       rm -rf dist
 
 install: all
-       install -o root -g root -m 755 -s lspci $(PREFIX)/sbin
-       install -o root -g root -m 644 pci.ids $(PREFIX)/etc
-       install -o root -g root -m 644 lspci.8 $(MANPREFIX)/man/man8
+       install -m 755 -s lspci setpci $(ROOT)/sbin
+       install -m 644 pci.ids $(PREFIX)/share
+       install -m 644 lspci.8 setpci.8 $(PREFIX)/man/man8
+       # Remove relics from old versions
+       rm -f $(ROOT)/etc/pci.ids
+
+release:
+       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
+       sed "s/^\\(Version:[    ]*\\)[0-9.]*/\\1$(VERSION)/" <pciutils.spec >pciutils.spec.new
+       sed "s/\\(, version \\).*\./\\1$(VERSION)$(SUFFIX)./" <README >README.new
+       mv pciutils.lsm.new pciutils.lsm
+       mv pciutils.spec.new pciutils.spec
+       mv README.new README
+
+REL=pciutils-$(VERSION)
 
 dist: clean
-       cp /usr/src/linux/include/linux/pci.h .
-       sh -c 'X=`pwd` ; X=`basename $$X` ; cd .. ; tar czvvf /tmp/$$X.tar.gz $$X --exclude CVS --exclude tmp'
-       rm -f pci.h
+       mkdir dist
+       cp -a . dist/$(REL)
+       rm -rf `find dist/$(REL) -name CVS -o -name tmp` dist/$(REL)/dist
+       [ -f dist/$(REL)/lib/header.h ] || cp /usr/src/linux/include/linux/pci.h dist/$(REL)/lib/header.h
+       cd dist ; tar czvvf /tmp/$(REL).tar.gz $(REL)
+
+.PHONY: all lib clean install dist man release