blob: 47ab02fb883782a2838e134e8aca5e57e866afd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# 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
|