mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-12 14:32:42 +02:00
b727f9666b
Signed-off-by: Leah Rowe <leah@libreboot.org>
12 lines
247 B
Makefile
12 lines
247 B
Makefile
# SPDX-License-Identifier: MIT
|
|
# SPDX-FileCopyrightText: 2023 Nicholas Chin
|
|
|
|
CC=cc
|
|
CFLAGS=-Wall -Wextra -Werror -O2 -pedantic
|
|
|
|
all: e6400_flash_unlock.c
|
|
$(CC) $(CFLAGS) e6400_flash_unlock.c -o e6400_flash_unlock
|
|
|
|
clean:
|
|
rm -f e6400_flash_unlock
|