summaryrefslogtreecommitdiff
path: root/util/e6400-flash-unlock/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/e6400-flash-unlock/Makefile')
-rw-r--r--util/e6400-flash-unlock/Makefile15
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