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_recv/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 util/spkmodem_recv/Makefile (limited to 'util/spkmodem_recv/Makefile') diff --git a/util/spkmodem_recv/Makefile b/util/spkmodem_recv/Makefile new file mode 100644 index 00000000..3c5dc51f --- /dev/null +++ b/util/spkmodem_recv/Makefile @@ -0,0 +1,14 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +CC?=cc +CFLAGS?=-Os -Wall -Wextra -Werror -pedantic +DESTDIR?= +PREFIX?=/usr/local +INSTALL?=install + +spkmodem-recv: + $(CC) $(CFLAGS) -o $@ $@.c +install: spkmodem-recv + $(INSTALL) -d $(DESTDIR)$(PREFIX)/bin/ + $(INSTALL) $< -t $(DESTDIR)$(PREFIX)/bin/ +clean: + rm -f spkmodem-recv -- cgit v1.2.1