From 10e09d6402b43d4d3d61fb10895d169c888b1af1 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Thu, 12 Mar 2026 21:21:36 +0000 Subject: 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 --- util/spkmodem_recv/Makefile | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 util/spkmodem_recv/Makefile (limited to 'util/spkmodem_recv/Makefile') 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 -# SPDX-FileCopyrightText: 2023 Riku Viitanen - -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 -- cgit v1.2.1