# $Id: Makefile,v 1.24 1999/10/15 08:43:45 mj Exp $ # Makefile for Linux PCI Utilities # (c) 1998--1999 Martin Mares OPT=-O2 -fomit-frame-pointer #OPT=-O2 -g CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Werror VERSION=2.1-pre8 SUFFIX= #SUFFIX=-alpha DATE=1999-10-15 ifeq ($(shell uname),FreeBSD) ROOT=/usr/local PREFIX=/usr/local else ROOT=/ PREFIX=/usr endif 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 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)/" clean: rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core` rm -f lspci setpci lib/config.* *.8 rm -rf dist install: all # -c is ignored on Linux, but required on FreeBSD install -c -m 755 -s lspci setpci $(ROOT)/sbin install -c -m 644 pci.ids $(PREFIX)/share install -c -m 644 lspci.8 setpci.8 $(PREFIX)/man/man8 # Remove relics from old versions rm -f $(ROOT)/etc/pci.ids uninstall: all rm -f $(ROOT)/sbin/lspci $(ROOT)/sbin/setpci rm -f $(PREFIX)/pci.ids rm -f $(PREFIX)/man/man8/lspci.8 $(PREFIX)/man/man8/setpci.8 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.new sed "s/^\\(Version:[ ]*\\)[0-9.]*/\\1$(VERSION)/" pciutils.spec.new sed "s/\\(, version \\).*\./\\1$(VERSION)$(SUFFIX)./" 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