From c1964817ddd97398d4fe5df64d42306b547faf86 Mon Sep 17 00:00:00 2001 From: Uladzimir Karpenka Date: Wed, 15 Jul 2026 11:03:03 +0300 Subject: [PATCH] wfm: compile wfmd/wfmmod in the Windows build Makefile.windows arrived from main, which predates the wfm module, so its SOURCES list omitted wfmd.c/wfmmod.c even though RXA.c/TXA.c reference their symbols -- the MinGW link failed on the missing objects. Add both to SOURCES, matching Makefile and Makefile.android. Co-Authored-By: Claude Opus 4.8 --- Makefile.windows | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.windows b/Makefile.windows index 0730dec..b5ee1cb 100644 --- a/Makefile.windows +++ b/Makefile.windows @@ -86,7 +86,7 @@ SOURCES = \ matchedCW.c meter.c meterlog10.c nbp.c nob.c nobII.c osctrl.c \ patchpanel.c resample.c rmatch.c rnnr.c RXA.c sbnr.c sender.c \ shift.c siphon.c slew.c snb.c ssql.c syncbuffs.c TXA.c \ - utilities.c varsamp.c version.c wcpAGC.c wisdom.c zetaHat.c + utilities.c varsamp.c version.c wcpAGC.c wfmd.c wfmmod.c wisdom.c zetaHat.c OBJS := $(addprefix $(OBJDIR)/, $(SOURCES:.c=.o))