Explicitly use 32-bit compilation and produce debugging symbols.

Without the 32-bit compilation the build fails on my 64-bit OS.
This commit is contained in:
Eli Ribble 2023-05-23 17:03:59 -07:00
parent 606770f64e
commit daeba4935c
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ PRGS = padec iFlow iPump iComII iPmon
IPRG = aprs485 IPRG = aprs485
HLOG = 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) all: $(PRGS) $(IPRG)