summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-04-21 13:54:01 +0100
committerLeah Rowe <leah@libreboot.org>2026-04-21 13:54:01 +0100
commit2d33754a5cac24bc9643c791116e96732240dcd5 (patch)
tree9632a9cb2e45c309e4e20efab0dd17e8d8f4adb7
parent6d3341c637f07c0ac680e14af4fee3b98db918ca (diff)
fix make file
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--util/nvmutil/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/util/nvmutil/Makefile b/util/nvmutil/Makefile
index b8ec2ad3..7c7411f9 100644
--- a/util/nvmutil/Makefile
+++ b/util/nvmutil/Makefile
@@ -8,17 +8,17 @@ DESTDIR?=
PREFIX?=/usr/local
INSTALL?=install
-nvm: nvmutil.c
- $(CC) $(CFLAGS) nvmutil.c -o nvm
+nvmutil: nvmutil.c
+ $(CC) $(CFLAGS) nvmutil.c -o nvmutil
install:
- $(INSTALL) nvm $(DESTDIR)$(PREFIX)/bin/nvm
+ $(INSTALL) nvmutil $(DESTDIR)$(PREFIX)/bin/nvmutil
uninstall:
- rm -f $(DESTDIR)$(PREFIX)/bin/nvm
+ rm -f $(DESTDIR)$(PREFIX)/bin/nvmutil
distclean:
- rm -f nvm
+ rm -f nvmutil
clean:
- rm -f nvm
+ rm -f nvmutil