fix make file

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-04-21 13:54:01 +01:00
parent 6d3341c637
commit 2d33754a5c
+6 -6
View File
@@ -8,17 +8,17 @@ DESTDIR?=
PREFIX?=/usr/local PREFIX?=/usr/local
INSTALL?=install INSTALL?=install
nvm: nvmutil.c nvmutil: nvmutil.c
$(CC) $(CFLAGS) nvmutil.c -o nvm $(CC) $(CFLAGS) nvmutil.c -o nvmutil
install: install:
$(INSTALL) nvm $(DESTDIR)$(PREFIX)/bin/nvm $(INSTALL) nvmutil $(DESTDIR)$(PREFIX)/bin/nvmutil
uninstall: uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/nvm rm -f $(DESTDIR)$(PREFIX)/bin/nvmutil
distclean: distclean:
rm -f nvm rm -f nvmutil
clean: clean:
rm -f nvm rm -f nvmutil