From daeba4935c9db0c7dd0ab941cb1a06bf984b115e Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Tue, 23 May 2023 17:03:59 -0700 Subject: [PATCH] Explicitly use 32-bit compilation and produce debugging symbols. Without the 32-bit compilation the build fails on my 64-bit OS. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 53f139a..a389fc8 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ PRGS = padec iFlow iPump iComII iPmon IPRG = aprs485 HLOG = aprs485 -%: %.c aprs485.h; gcc -O -Wall -I. -o $* $*.c -lm +%: %.c aprs485.h; gcc -O -Wall -I. -o $* $*.c -lm -mbe32 -g all: $(PRGS) $(IPRG)