From 18588446479fbac700d49e3d5b0061e436ca9be6 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Mon, 17 Jan 2005 11:08:08 +0000 Subject: Make building with different libpci versions easier. The defines might go into official libpci for 2.2 git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1878 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/vgabios/Makefile | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'util/vgabios/Makefile') diff --git a/util/vgabios/Makefile b/util/vgabios/Makefile index d1c10f2361..5fadba6ab8 100644 --- a/util/vgabios/Makefile +++ b/util/vgabios/Makefile @@ -1,5 +1,17 @@ +# +# NOTE: You need to add your libpci.a version to CFLAGS below if +# pci-userspace.c does not build. +# +# If you are building on AMD64, you have to use /usr/lib64/libpci.a instead of +# /usr/lib/... +# + CC = gcc -CFLAGS = -Wall -Ix86emu/include -O2 -g +CFLAGS = -Wall -Ix86emu/include -O2 -g \ + -DLIBPCI_MAJOR_VERSION=2 \ + -DLIBPCI_MINOR_VERSION=1 \ + -DLIBPCI_MICRO_VERSION=11 + INTOBJS = int10.o int15.o int16.o int1a.o inte6.o OBJECTS = testbios.o helper_exec.o helper_mem.o $(INTOBJS) -- cgit v1.2.3