From: c vw Date: Tue, 1 Jun 2021 14:43:53 +0000 (+0200) Subject: Prp. for merge: include gpio.c and switch_menu.c in compilation even X-Git-Url: https://git.rkrishnan.org/components/listings/frontends//%22%22?a=commitdiff_plain;h=fbedb4a313cd58a80bb26e9aaddbd723a5c4257b;p=pihpsdr.git Prp. for merge: include gpio.c and switch_menu.c in compilation even if no GPIO is present --- 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) \