From fbedb4a313cd58a80bb26e9aaddbd723a5c4257b Mon Sep 17 00:00:00 2001 From: c vw Date: Tue, 1 Jun 2021 16:43:53 +0200 Subject: [PATCH] Prp. for merge: include gpio.c and switch_menu.c in compilation even if no GPIO is present --- Makefile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 7e811bf..59b8dd2 100644 --- a/Makefile +++ b/Makefile @@ -315,7 +315,9 @@ led.c \ ext.c \ error_handler.c \ cwramp.c \ -protocols.c +protocols.c \ +switch_menu.c \ +gpio.c HEADERS= \ @@ -384,7 +386,9 @@ memory.h \ led.h \ ext.h \ error_handler.h \ -protocols.h +protocols.h \ +switch_menu.h \ +gpio.h OBJS= \ @@ -452,7 +456,9 @@ led.o \ ext.o \ error_handler.o \ cwramp.o \ -protocols.o +protocols.o \ +switch_menu.o \ +gpio.o $(PROGRAM): $(OBJS) $(AUDIO_OBJS) $(REMOTE_OBJS) $(USBOZY_OBJS) $(SOAPYSDR_OBJS) \ $(LOCALCW_OBJS) $(PURESIGNAL_OBJS) $(GPIO_OBJS) \ -- 2.45.2