add utility to dump linuxbios table from v1

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2085 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer
2005-11-12 20:58:26 +00:00
parent 2fd467ce3c
commit 8af7998bac
3 changed files with 369 additions and 0 deletions

14
util/lbtdump/Makefile Normal file
View File

@@ -0,0 +1,14 @@
TARGET=lbtdump
CC=gcc
CFLAGS=-g -O -Wall
all: $(TARGET)
$(TARGET): *.c
$(CC) $(CFLAGS) $< -o $@
clean:
rm -f $(TARGET)