From 48e949263b01e2b22b9ba81dc4eca1d2d1d0266c Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Tue, 21 Apr 2026 19:11:45 +0100 Subject: 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 --- util/spkmodem_decode/Makefile | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 util/spkmodem_decode/Makefile (limited to 'util/spkmodem_decode/Makefile') 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 -# SPDX-FileCopyrightText: 2023 Riku Viitanen - -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 -- cgit v1.2.1