Merge branch 'mqtt' into mqtt_plus

This commit is contained in:
Jonathan Naylor
2024-01-04 14:13:45 +00:00
2 changed files with 3 additions and 1 deletions

View File

@@ -5,6 +5,8 @@ RUN apk add --update --no-cache \
make \
g++ \
git \
libsamplerate-dev \
linux-headers \
&& rm -rf /var/cache/apk/*
ADD ./ /MMDVMHost

View File

@@ -20,7 +20,7 @@ OBJECTS = \
all: MMDVMHost
MMDVMHost: GitVersion.h $(OBJECTS)
$(CXX) $(OBJECTS) $(CFLAGS) $(LIBS) -o MMDVMHost
$(CXX) $(OBJECTS) $(LDFLAGS) $(LIBS) -o MMDVMHost
%.o: %.cpp
$(CXX) $(CFLAGS) -c -o $@ $<