lbmk/util/nvmutil/Makefile

12 lines
202 B
Makefile
Raw Normal View History

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