# 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