⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 linux~{OBOTJ>KySP~}pci~{Ih18~}
💻
字号:
# $Id: Makefile,v 1.54 2003/01/04 12:53:01 mj Exp $# Makefile for Linux PCI Utilities# (c) 1998--2003 Martin Mares <mj@ucw.cz>OPT=-O2 -fomit-frame-pointer#OPT=-O2 -gCFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypesVERSION=2.1.11#SUFFIX=-pre2DATE=2003-01-04PREFIX=/usr/localSBINDIR=$(PREFIX)/sbinSHAREDIR=$(PREFIX)/shareMANDIR=$(shell if [ -d $(PREFIX)/share/man ] ; then echo $(PREFIX)/share/man ; else echo $(PREFIX)/man ; fi)INSTALL=installDIRINSTALL=install -dPCILIB=libpci.aifeq ($(shell uname),NetBSD)PCILIB=libpciutils.aLDFLAGS+=-lpcielseifeq ($(shell uname),AIX)CFLAGS=-gINSTALL=installbsdDIRINSTALL=mkdir -pendifendifexportall: lib lspci setpci lspci.8 setpci.8 update-pciids update-pciids.8 pci.idslib: lib/config.h	$(MAKE) -C lib alllib/config.h:	cd lib && ./configure $(SHAREDIR) $(VERSION)lspci: lspci.o common.o lib/$(PCILIB)setpci: setpci.o common.o lib/$(PCILIB)lspci.o: lspci.c pciutils.hsetpci.o: setpci.c pciutils.hcommon.o: common.c pciutils.hupdate-pciids: update-pciids.sh	sed <$< >$@ "s@^DEST=.*@DEST=$(SHAREDIR)/pci.ids@"%.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)/;s#@SHAREDIR@#$(SHAREDIR)#"clean:	rm -f `find . -name "*~" -o -name "*.[oa]" -o -name "\#*\#" -o -name TAGS -o -name core`	rm -f update-pciids lspci setpci lib/config.* *.8 pci.ids.*install: all# -c is ignored on Linux, but required on FreeBSD	$(DIRINSTALL) -m 755 $(SBINDIR) $(SHAREDIR) $(MANDIR)/man8	$(INSTALL) -c -m 755 -s lspci setpci $(SBINDIR)	$(INSTALL) -c -m 755 update-pciids $(SBINDIR)	$(INSTALL) -c -m 644 pci.ids $(SHAREDIR)	$(INSTALL) -c -m 644 lspci.8 setpci.8 update-pciids.8 $(MANDIR)/man8uninstall: all	rm -f $(SBINDIR)/lspci $(SBINDIR)/setpci $(SBINDIR)/update-pciids	rm -f $(SHAREDIR)/pci.ids	rm -f $(MANDIR)/man8/lspci.8 $(MANDIR)/man8/setpci.8 $(MANDIR)/man8/update-pciids.8get-ids:	cp ~/tree/pciids/pci.ids pci.idspci.ids:	@ [ -f pci.ids ] || echo >&2 "The pci.ids file is no longer part of the CVS. Please do run update-ids.sh to download them." && falserelease:	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 READMEREL=pciutils-$(VERSION)$(SUFFIX)DISTTMP=/tmp/pciutils-distdist: clean pci.ids	rm -rf $(DISTTMP)	mkdir $(DISTTMP)	cp -a . $(DISTTMP)/$(REL)	rm -rf `find $(DISTTMP)/$(REL) -name CVS -o -name tmp -o -name maint`	cd $(DISTTMP) ; tar czvvf /tmp/$(REL).tar.gz $(REL)	rm -rf $(DISTTMP)upload: dist	maint/upload $(REL).PHONY: all lib clean install uninstall dist man release upload get-ids

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -