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:
14
util/lbtdump/Makefile
Normal file
14
util/lbtdump/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
TARGET=lbtdump
|
||||
|
||||
CC=gcc
|
||||
CFLAGS=-g -O -Wall
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
$(TARGET): *.c
|
||||
$(CC) $(CFLAGS) $< -o $@
|
||||
|
||||
clean:
|
||||
rm -f $(TARGET)
|
||||
|
||||
|
Reference in New Issue
Block a user