diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2008-03-01 19:09:01 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-03-01 19:09:01 +0000 |
commit | cbb5ba8633c2ad143366c3bc367f8c4f6434c084 (patch) | |
tree | 5cd9812c1ca9ab13e3791221bdd8217627df860f /util/lxbios/Makefile | |
parent | 66d83cfa84f75ad3fba38d3b926da531d800b8a5 (diff) |
Rename lxbios to nvramtool, step 3 (rename directory).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3124 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/lxbios/Makefile')
-rw-r--r-- | util/lxbios/Makefile | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/util/lxbios/Makefile b/util/lxbios/Makefile deleted file mode 100644 index 5d9ddc0619..0000000000 --- a/util/lxbios/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# $Id$ - -PROJECT = nvramtool -CC = gcc -CFLAGS = -O2 -W -Wall -LDFLAGS = -OBJS = common.o compute_ip_checksum.o hexdump.o cmos_lowlevel.o \ - reg_expr.o layout.o layout_file.o lbtable.o cmos_ops.o input_file.o \ - opts.o nvramtool.o -HEADERS = common.h ip_checksum.h coreboot_tables.h hexdump.h \ - cmos_lowlevel.h reg_expr.h layout.h layout_file.h lbtable.h \ - cmos_ops.h input_file.h opts.h - -all: nvramtool man - -nvramtool: $(OBJS) - $(CC) $(LDFLAGS) -o $@ $(OBJS) - -man: nvramtool.1.gz - -$(OBJS): $(HEADERS) - -nvramtool.1.gz: nvramtool.1 - gzip -c --best nvramtool.1 > nvramtool.1.gz - -clean: - rm -f *.o nvramtool nvramtool.1.gz - |