]> mj.ucw.cz Git - pciutils.git/blobdiff - Makefile
Capability list parser now recognizes all AGP and all PCI Power Management
[pciutils.git] / Makefile
index 3960efb5e3e385925687ff2e65714875aef6bb39..c8b8f113864533d4b5c945beb1efa8907d35bdec 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,22 +1,65 @@
-# $Id: Makefile,v 1.1 1997/12/23 10:29:18 mj Exp $
+# $Id: Makefile,v 1.13 1999/01/28 20:16:42 mj Exp $
 # Makefile for Linux PCI Utilities
-# (c) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
+# (c) 1998--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
 
-OPT=-O2 -m486 -malign-loops=0 -malign-jumps=0 -malign-functions=2 -fno-strength-reduce
-#-fomit-frame-pointer
-#LOPT=-s
-#DEBUG=-ggdb
-#LDEBUG=-lefence
-CFLAGS=$(OPT) $(DEBUG) -Wall -W -Wno-parentheses -Wstrict-prototypes -Wno-unused -Werror
-LDFLAGS=$(LOPT) $(LDEBUG)
+OPT=-O2 -fomit-frame-pointer
+#OPT=-O2 -g
+CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Werror
 
-all: lspci
+ROOT=/
+PREFIX=/usr
 
-lspci: lspci.o names.o
+VERSION=1.99.4
+SUFFIX=-alpha
+DATE=99-01-28
 
-lspci.o: lspci.c pciutils.h
-names.o: names.c pciutils.h
+export
+
+all: lib lspci setpci lspci.8 setpci.8
+
+lib: lib/config.h
+       $(MAKE) -C lib all
+
+lib/config.h:
+       cd lib && ./configure $(PREFIX) $(VERSION)
+
+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
+       rm -f lspci setpci lib/config.* *.8
+       rm -rf dist
+
+install: all
+       install -o root -g root -m 755 -s lspci setpci $(ROOT)/sbin
+       install -o root -g root -m 644 pci.ids $(PREFIX)/share
+       install -o root -g root -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
+       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