summaryrefslogtreecommitdiff
path: root/util/spkmodem_decode/Makefile
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-04-21 19:11:45 +0100
committerLeah Rowe <leah@libreboot.org>2026-04-21 19:11:45 +0100
commit48e949263b01e2b22b9ba81dc4eca1d2d1d0266c (patch)
treef00f312ef9b3c50e95c8b760388ced6bb60223f3 /util/spkmodem_decode/Makefile
parent7b5349e85de026666cd095883307b21e0b7786e2 (diff)
switch spkmodem_decode back to spkmodem_recv
this version is more tested. i'll merge _decode back once it's better tested. it contains a lot of invasive changes, whereas recv is much closer to the original GNU code that i inherited, that i also know works quite well. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/spkmodem_decode/Makefile')
-rw-r--r--util/spkmodem_decode/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/util/spkmodem_decode/Makefile b/util/spkmodem_decode/Makefile
deleted file mode 100644
index b00c4f43..00000000
--- a/util/spkmodem_decode/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-decode
-
-all: $(PROG)
-
-$(PROG): spkmodem-decode.c
- $(CC) $(CFLAGS) spkmodem-decode.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