From 5d6946c42cf8faa64f609155cf3b121ff8d78474 Mon Sep 17 00:00:00 2001 From: Nicholas Chin Date: Thu, 12 Oct 2023 17:57:06 -0600 Subject: util/e6400-flash-unlock: Rename to dell-flash-unlock This more accurately describes the scope of the utility. Signed-off-by: Nicholas Chin --- util/dell-flash-unlock/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 util/dell-flash-unlock/Makefile (limited to 'util/dell-flash-unlock/Makefile') diff --git a/util/dell-flash-unlock/Makefile b/util/dell-flash-unlock/Makefile new file mode 100644 index 00000000..fae52dea --- /dev/null +++ b/util/dell-flash-unlock/Makefile @@ -0,0 +1,15 @@ +# SPDX-License-Identifier: MIT +# SPDX-FileCopyrightText: 2023 Nicholas Chin + +CC=cc +CFLAGS=-Wall -Wextra -Werror -O2 -pedantic +ifeq ($(shell uname), OpenBSD) + CFLAGS += -l$(shell uname -p) +endif +SRCS=dell_flash_unlock.c accessors.c + +all: $(SRCS) accessors.h + $(CC) $(CFLAGS) $(SRCS) -o dell_flash_unlock + +clean: + rm -f dell_flash_unlock -- cgit v1.2.1