summaryrefslogtreecommitdiff
path: root/util/vgabios/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/vgabios/Makefile')
-rw-r--r--util/vgabios/Makefile9
1 files changed, 2 insertions, 7 deletions
diff --git a/util/vgabios/Makefile b/util/vgabios/Makefile
index 5fadba6ab8..c1359bbdc1 100644
--- a/util/vgabios/Makefile
+++ b/util/vgabios/Makefile
@@ -7,11 +7,7 @@
#
CC = gcc
-CFLAGS = -Wall -Ix86emu/include -O2 -g \
- -DLIBPCI_MAJOR_VERSION=2 \
- -DLIBPCI_MINOR_VERSION=1 \
- -DLIBPCI_MICRO_VERSION=11
-
+CFLAGS = -Wall -Ix86emu/include -O2 -g
INTOBJS = int10.o int15.o int16.o int1a.o inte6.o
OBJECTS = testbios.o helper_exec.o helper_mem.o $(INTOBJS)
@@ -20,12 +16,11 @@ LIBS = x86emu/src/x86emu/libx86emu.a
# user space pci is the only option right now.
OBJECTS += pci-userspace.o
-LIBS += /usr/lib/libpci.a
all: testbios
testbios: $(OBJECTS) $(LIBS)
- $(CC) -o testbios $(OBJECTS) $(LIBS)
+ $(CC) -o testbios $(OBJECTS) $(LIBS) -lpci
helper_exec.o: helper_exec.c test.h