From 42cf7ed628e8e2fae28bc73185314733caaf0328 Mon Sep 17 00:00:00 2001 From: Andrew Wood Date: Sun, 26 Oct 2025 12:55:15 +0000 Subject: [PATCH] Move the remote control code into the pv library. --- Makefile.am | 2 +- src/{main => pv}/remote.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{main => pv}/remote.c (100%) diff --git a/Makefile.am b/Makefile.am index 396d511..9a739b6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,7 +15,6 @@ src/main/debug.c \ src/main/help.c \ src/main/main.c \ src/main/options.c \ -src/main/remote.c \ src/main/version.c \ src/pv/calc.c \ src/pv/cursor.c \ @@ -38,6 +37,7 @@ src/pv/format/timer.c \ src/pv/loop.c \ src/pv/number.c \ src/pv/proctitle.c \ +src/pv/remote.c \ src/pv/signal.c \ src/pv/state.c \ src/pv/string.c \ diff --git a/src/main/remote.c b/src/pv/remote.c similarity index 100% rename from src/main/remote.c rename to src/pv/remote.c