]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Prp. for merge: include gpio.c and switch_menu.c in compilation even
authorc vw <dl1ycf@darc.de>
Tue, 1 Jun 2021 14:43:53 +0000 (16:43 +0200)
committerc vw <dl1ycf@darc.de>
Tue, 1 Jun 2021 14:43:53 +0000 (16:43 +0200)
if no GPIO is present

Makefile

index 7e811bfaa9384b6a7163bdb7e97450fff212f027..59b8dd28ceeb1985fbf88fd456a995c4172045a3 100644 (file)
--- 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) \