From 1653d2f7d290746108a4856e05279104d6090eb6 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 19 Jan 2025 09:13:49 -0500 Subject: [PATCH] Update Makefile main.cpp --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 713eacf3..28001f3b 100644 --- a/Makefile +++ b/Makefile @@ -177,12 +177,12 @@ afsk/ax5043.o: ax5043/spi/ax5043spi.h cd afsk; gcc -std=gnu99 $(DEBUG_BEHAVIOR) -I ../ax5043 -c ax5043.c; cd .. main.o: main.h -main.o: main.c +main.o: main.cpp main.o: afsk/status.h main.o: afsk/ax5043.h main.o: afsk/ax25.h main.o: ax5043/spi/ax5043spi.h - gcc -std=gnu99 $(DEBUG_BEHAVIOR) -I ../ax5043 -c main.c; + gcc -std=gnu99 $(DEBUG_BEHAVIOR) -I ../ax5043 -c main.cpp; telem.o: telem.c gcc -std=gnu99 $(DEBUG_BEHAVIOR) -I ../ax5043 -c telem.c;