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
This commit is contained in:
Stefan Reinauer
2005-01-17 11:08:08 +00:00
parent 1d6b46060c
commit 1858844647
2 changed files with 47 additions and 1 deletions

View File

@@ -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)