lbmk/util/nvmutil/Makefile

12 lines
202 B
Makefile

# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2022 Leah Rowe <leah@libreboot.org>
CC=cc
CFLAGS=-Os -Wall -Wextra -Werror -pedantic
all:
$(CC) $(CFLAGS) nvmutil.c -o nvm
clean:
rm -f nvm