blob: f12b264455d8cea195eb65b28f3e0480ff787f52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--- /tmp/Makefile Fri Aug 2 09:40:43 2002
+++ Makefile Fri Aug 2 09:43:40 2002
@@ -33,7 +33,7 @@
export
-all: lib lspci setpci lspci.8 setpci.8 pci.ids
+all: lib lspci setpci lspci.8 setpci.8 pci.ids pcimodules pcimodules.8
lib: lib/config.h
$(MAKE) -C lib all
@@ -61,13 +61,13 @@
install: all
# -c is ignored on Linux, but required on FreeBSD
$(DIRINSTALL) -m 755 $(ROOT)/sbin $(PREFIX)/share $(MANDIR)/man8
- $(INSTALL) -c -m 755 -s lspci setpci $(ROOT)/sbin
+ $(INSTALL) -c -m 755 -s lspci setpci pcimodules $(ROOT)/sbin
if [ ! -f $(PREFIX)/share/pci.ids -o pci.ids -nt $(PREFIX)/share/pci.ids ] ; then \
$(INSTALL) -c -m 644 pci.ids $(PREFIX)/share ; \
elif [ -f $(PREFIX)/share/pci.ids ] ; then \
echo "$(PREFIX)/share/pci.ids is same or newer than the version to be installed, skipping." ; \
fi
- $(INSTALL) -c -m 644 lspci.8 setpci.8 $(MANDIR)/man8
+ $(INSTALL) -c -m 644 lspci.8 setpci.8 pcimodules.8 $(MANDIR)/man8
# Remove relics from old versions
rm -f $(ROOT)/etc/pci.ids
|