mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-03-28 23:19:03 +02:00
12 lines
202 B
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
|