diff options
author | Stefan Reinauer <stepan@openbios.org> | 2005-11-12 20:58:26 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2005-11-12 20:58:26 +0000 |
commit | 8af7998bacc11c66381836c28b099a4407da955c (patch) | |
tree | 90c13cb5b7254d45da53eb894acba7cf0af9b132 /util/lbtdump/Makefile | |
parent | 2fd467ce3ca96391f787d4e5f8c56878321da160 (diff) | |
download | coreboot-8af7998bacc11c66381836c28b099a4407da955c.tar.xz |
add utility to dump linuxbios table from v1
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2085 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/lbtdump/Makefile')
-rw-r--r-- | util/lbtdump/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/util/lbtdump/Makefile b/util/lbtdump/Makefile new file mode 100644 index 0000000000..f6a4fbd40a --- /dev/null +++ b/util/lbtdump/Makefile @@ -0,0 +1,14 @@ +TARGET=lbtdump + +CC=gcc +CFLAGS=-g -O -Wall + +all: $(TARGET) + +$(TARGET): *.c + $(CC) $(CFLAGS) $< -o $@ + +clean: + rm -f $(TARGET) + + |