summaryrefslogtreecommitdiff
path: root/util/spkmodem_recv/Makefile
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-03-12 21:21:36 +0000
committerLeah Rowe <leah@libreboot.org>2026-03-12 21:24:16 +0000
commit10e09d6402b43d4d3d61fb10895d169c888b1af1 (patch)
tree141ad7cd86a5a80f96a4be1a4ec4dacb33a1043b /util/spkmodem_recv/Makefile
parentf0466457be76caa209d13d223eef995d2b01d526 (diff)
rename util/spkmodem-recv to spkmodem-decode
it's no longer resembling the original util at all, so a rename seems indicated. yes. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/spkmodem_recv/Makefile')
-rw-r--r--util/spkmodem_recv/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/util/spkmodem_recv/Makefile b/util/spkmodem_recv/Makefile
deleted file mode 100644
index 293d7475..00000000
--- a/util/spkmodem_recv/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-# SPDX-License-Identifier: MIT
-# SPDX-FileCopyrightText: 2022,2026 Leah Rowe <leah@libreboot.org>
-# SPDX-FileCopyrightText: 2023 Riku Viitanen <riku.viitanen@protonmail.com>
-
-CC?=cc
-CFLAGS?=-Os -Wall -Wextra -Werror -pedantic -std=c90
-DESTDIR?=
-PREFIX?=/usr/local
-INSTALL?=install
-
-PROG=spkmodem-recv
-
-all: $(PROG)
-
-$(PROG): spkmodem-recv.c
- $(CC) $(CFLAGS) spkmodem-recv.c -o $(PROG)
-
-install: $(PROG)
- mkdir -p $(DESTDIR)$(PREFIX)/bin/
- install -c $(PROG) $(DESTDIR)$(PREFIX)/bin/
-
-uninstall:
- rm -f $(DESTDIR)$(PREFIX)/bin/$(PROG)
-
-clean:
- rm -f $(PROG)
-
-distclean: clean
-
-.PHONY: all install uninstall clean distclean