summaryrefslogtreecommitdiff
path: root/util/lxbios/Makefile
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2008-03-01 19:06:32 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2008-03-01 19:06:32 +0000
commit6e565947a554b9145ae5afdc307a6b842bc09883 (patch)
tree1063717ec48d42bf238cc0241e64495042706af9 /util/lxbios/Makefile
parenteec5ff4ccb48a640e8a289f1faabee4ff2587005 (diff)
Rename lxbios to nvramtool.
This is step 1 in a three-step commit: 1. Apply patch, commit. 2. Rename some files: $ svn mv lxbios.c nvramtool.c $ svn mv lxbios.1 nvramtool.c $ svn mv lxbios.spec nvramtool.spec $ svn ci 3. Rename lxbios directory: $ svn mv lxbios/ nvramtool/ $ svn ci 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@3122 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/lxbios/Makefile')
-rw-r--r--util/lxbios/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/util/lxbios/Makefile b/util/lxbios/Makefile
index 068f6e8470..5d9ddc0619 100644
--- a/util/lxbios/Makefile
+++ b/util/lxbios/Makefile
@@ -1,28 +1,28 @@
# $Id$
-PROJECT = lxbios
+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 lxbios.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: lxbios man
+all: nvramtool man
-lxbios: $(OBJS)
+nvramtool: $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS)
-man: lxbios.1.gz
+man: nvramtool.1.gz
$(OBJS): $(HEADERS)
-lxbios.1.gz: lxbios.1
- gzip -c --best lxbios.1 > lxbios.1.gz
+nvramtool.1.gz: nvramtool.1
+ gzip -c --best nvramtool.1 > nvramtool.1.gz
clean:
- rm -f *.o lxbios lxbios.1.gz
+ rm -f *.o nvramtool nvramtool.1.gz