Skip to content

Commit b2c4b6c

Browse files
committed
Progress with working Broker.
1 parent b25af1b commit b2c4b6c

File tree

6 files changed

+1592
-43
lines changed

6 files changed

+1592
-43
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ lt*.m4
2525
*.cache
2626
config.*
2727
configure
28+
configure~
2829
libtool
2930
libtool.m4
3031
*.log
@@ -123,3 +124,4 @@ examples/websocket/websocket_client
123124
# Never exclude Espressif config.h files
124125
!/IDE/Espressif/**/config.h
125126

127+
src/mqtt_broker

src/include.am

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ src_libwolfmqtt_la_DEPENDENCIES =
2020

2121
EXTRA_DIST +=
2222

23+
if BUILD_BROKER
2324
bin_PROGRAMS += src/mqtt_broker
2425
src_mqtt_broker_SOURCES = src/mqtt_broker.c
2526
src_mqtt_broker_CFLAGS =
2627
src_mqtt_broker_LDFLAGS = -Lsrc
2728
src_mqtt_broker_LDADD = src/libwolfmqtt.la $(LTLIBEVENT) $(LIB_STATIC_ADD)
2829
src_mqtt_broker_DEPENDENCIES = src/libwolfmqtt.la
30+
endif

0 commit comments

Comments
 (0)