diff options
author | Nicholas Chin <nic.c3.14@gmail.com> | 2023-10-12 17:57:06 -0600 |
---|---|---|
committer | Nicholas Chin <nic.c3.14@gmail.com> | 2023-10-12 17:57:06 -0600 |
commit | 5d6946c42cf8faa64f609155cf3b121ff8d78474 (patch) | |
tree | 184a97c42535cd0547cd8bcc44b7e7be670f3d85 /util/e6400-flash-unlock/Makefile | |
parent | 42068f7ce11b88e13b4bf3f2d2290bc4d16d60b7 (diff) |
util/e6400-flash-unlock: Rename to dell-flash-unlock
This more accurately describes the scope of the utility.
Signed-off-by: Nicholas Chin <nic.c3.14@gmail.com>
Diffstat (limited to 'util/e6400-flash-unlock/Makefile')
-rw-r--r-- | util/e6400-flash-unlock/Makefile | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/util/e6400-flash-unlock/Makefile b/util/e6400-flash-unlock/Makefile deleted file mode 100644 index 41a90482..00000000 --- a/util/e6400-flash-unlock/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# 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=e6400_flash_unlock.c accessors.c - -all: $(SRCS) accessors.h - $(CC) $(CFLAGS) $(SRCS) -o e6400_flash_unlock - -clean: - rm -f e6400_flash_unlock |