X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/f603a589b9b53692e539c6976fb5e65b16aa4439..73fb9b4cd8d1b1722077985594e50dd38893ca5f:/tools/Makefile

diff --git a/tools/Makefile b/tools/Makefile
index 7402d79..c53fd4a 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -1,8 +1,9 @@
 CFLAGS=-I../include
 CC=gcc
 SMRAM_ICH2_OBJS=smram-linux-tool.o ../pci/pci-linux.o ../ich2/smram-ich2.noraw.o
+PCI_OBJS=pci.o ../pci/pci-linux.o
 
-all: smram-ich2 port
+all: smram-ich2 port pci
 
 %.noraw.o: %.c
 	gcc $(CFLAGS) -c -o $@ $<
@@ -13,5 +14,8 @@ smram-ich2: $(SMRAM_ICH2_OBJS)
 port: port.o
 	gcc -o port port.o
 
+pci: $(PCI_OBJS)
+	gcc $(CFLAGS) -o pci $(PCI_OBJS)
+
 clean:
 	rm -f $(SMRAM_ICH2_OBJS) smram-ich2