|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
include ../config.mk
|
|
|
|
|
R=..
|
|
|
|
|
include ${R}/config.mk
|
|
|
|
|
|
|
|
|
|
.PHONY: all install uninstall clean reallyclean
|
|
|
|
|
|
|
|
|
@ -112,10 +113,10 @@ mosquitto : ${OBJS}
|
|
|
|
|
mosquitto.o : mosquitto.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
alias_mosq.o : ../lib/alias_mosq.c ../lib/alias_mosq.h
|
|
|
|
|
alias_mosq.o : ${R}/lib/alias_mosq.c ${R}/lib/alias_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
base64_mosq.o : ../lib/base64_mosq.c ../lib/base64_mosq.h
|
|
|
|
|
base64_mosq.o : ${R}/lib/base64_mosq.c ${R}/lib/base64_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
bridge.o : bridge.c mosquitto_broker_internal.h
|
|
|
|
@ -154,28 +155,28 @@ handle_connect.o : handle_connect.c mosquitto_broker_internal.h
|
|
|
|
|
handle_disconnect.o : handle_disconnect.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
handle_ping.o : ../lib/handle_ping.c ../lib/read_handle.h
|
|
|
|
|
handle_ping.o : ${R}/lib/handle_ping.c ${R}/lib/read_handle.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
handle_pubackcomp.o : ../lib/handle_pubackcomp.c ../lib/read_handle.h
|
|
|
|
|
handle_pubackcomp.o : ${R}/lib/handle_pubackcomp.c ${R}/lib/read_handle.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
handle_publish.o : handle_publish.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
handle_pubrec.o : ../lib/handle_pubrec.c ../lib/read_handle.h
|
|
|
|
|
handle_pubrec.o : ${R}/lib/handle_pubrec.c ${R}/lib/read_handle.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
handle_pubrel.o : ../lib/handle_pubrel.c ../lib/read_handle.h
|
|
|
|
|
handle_pubrel.o : ${R}/lib/handle_pubrel.c ${R}/lib/read_handle.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
handle_suback.o : ../lib/handle_suback.c ../lib/read_handle.h
|
|
|
|
|
handle_suback.o : ${R}/lib/handle_suback.c ${R}/lib/read_handle.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
handle_subscribe.o : handle_subscribe.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
handle_unsuback.o : ../lib/handle_unsuback.c ../lib/read_handle.h
|
|
|
|
|
handle_unsuback.o : ${R}/lib/handle_unsuback.c ${R}/lib/read_handle.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
handle_unsubscribe.o : handle_unsubscribe.c mosquitto_broker_internal.h
|
|
|
|
@ -199,13 +200,13 @@ logging.o : logging.c mosquitto_broker_internal.h
|
|
|
|
|
loop.o : loop.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
memory_mosq.o : ../lib/memory_mosq.c ../lib/memory_mosq.h
|
|
|
|
|
memory_mosq.o : ${R}/lib/memory_mosq.c ${R}/lib/memory_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
memory_public.o : memory_public.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
misc_mosq.o : ../lib/misc_mosq.c ../lib/misc_mosq.h
|
|
|
|
|
misc_mosq.o : ${R}/lib/misc_mosq.c ${R}/lib/misc_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
mux.o : mux.c mosquitto_broker_internal.h
|
|
|
|
@ -223,13 +224,13 @@ mux_poll.o : mux_poll.c mosquitto_broker_internal.h
|
|
|
|
|
net.o : net.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
net_mosq_ocsp.o : ../lib/net_mosq_ocsp.c ../lib/net_mosq.h
|
|
|
|
|
net_mosq_ocsp.o : ${R}/lib/net_mosq_ocsp.c ${R}/lib/net_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
net_mosq.o : ../lib/net_mosq.c ../lib/net_mosq.h
|
|
|
|
|
net_mosq.o : ${R}/lib/net_mosq.c ${R}/lib/net_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
net_ws.o : ../lib/net_ws.c ../lib/net_mosq.h
|
|
|
|
|
net_ws.o : ${R}/lib/net_ws.c ${R}/lib/net_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
password_mosq.o : password_mosq.c password_mosq.h mosquitto_broker_internal.h
|
|
|
|
@ -250,70 +251,70 @@ persist_write.o : persist_write.c persist.h mosquitto_broker_internal.h
|
|
|
|
|
persist_write_v5.o : persist_write_v5.c persist.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
packet_datatypes.o : ../lib/packet_datatypes.c ../lib/packet_mosq.h
|
|
|
|
|
packet_datatypes.o : ${R}/lib/packet_datatypes.c ${R}/lib/packet_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
packet_mosq.o : ../lib/packet_mosq.c ../lib/packet_mosq.h
|
|
|
|
|
packet_mosq.o : ${R}/lib/packet_mosq.c ${R}/lib/packet_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
picohttpparser.o : ../deps/picohttpparser/picohttpparser.c ../deps/picohttpparser/picohttpparser.h
|
|
|
|
|
picohttpparser.o : ${R}/deps/picohttpparser/picohttpparser.c ${R}/deps/picohttpparser/picohttpparser.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
property_broker.o : property_broker.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
property_mosq.o : ../lib/property_mosq.c ../lib/property_mosq.h
|
|
|
|
|
property_mosq.o : ${R}/lib/property_mosq.c ${R}/lib/property_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_callbacks.o : plugin_callbacks.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_callbacks.o : plugin_callbacks.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_v2.o : plugin_v2.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_v2.o : plugin_v2.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_v3.o : plugin_v3.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_v3.o : plugin_v3.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_v4.o : plugin_v4.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_v4.o : plugin_v4.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_v5.o : plugin_v5.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_v5.o : plugin_v5.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_acl_check.o : plugin_acl_check.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_acl_check.o : plugin_acl_check.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_basic_auth.o : plugin_basic_auth.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_basic_auth.o : plugin_basic_auth.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_cleanup.o : plugin_cleanup.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_cleanup.o : plugin_cleanup.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_connect.o : plugin_connect.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_connect.o : plugin_connect.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_disconnect.o : plugin_disconnect.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_disconnect.o : plugin_disconnect.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_extended_auth.o : plugin_extended_auth.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_extended_auth.o : plugin_extended_auth.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_init.o : plugin_init.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_init.o : plugin_init.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_message.o : plugin_message.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_message.o : plugin_message.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_persist.o : plugin_persist.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_persist.o : plugin_persist.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_psk_key.o : plugin_psk_key.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_psk_key.o : plugin_psk_key.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_public.o : plugin_public.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_public.o : plugin_public.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
plugin_tick.o : plugin_tick.c ../include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
plugin_tick.o : plugin_tick.c ${R}/include/mosquitto_plugin.h mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
read_handle.o : read_handle.c mosquitto_broker_internal.h
|
|
|
|
@ -328,31 +329,31 @@ security_default.o : security_default.c mosquitto_broker_internal.h
|
|
|
|
|
send_auth.o : send_auth.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
send_connect.o : ../lib/send_connect.c ../lib/send_mosq.h
|
|
|
|
|
send_connect.o : ${R}/lib/send_connect.c ${R}/lib/send_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
send_disconnect.o : ../lib/send_disconnect.c ../lib/send_mosq.h
|
|
|
|
|
send_disconnect.o : ${R}/lib/send_disconnect.c ${R}/lib/send_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
send_connack.o : send_connack.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
send_mosq.o : ../lib/send_mosq.c ../lib/send_mosq.h
|
|
|
|
|
send_mosq.o : ${R}/lib/send_mosq.c ${R}/lib/send_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
send_publish.o : ../lib/send_publish.c ../lib/send_mosq.h
|
|
|
|
|
send_publish.o : ${R}/lib/send_publish.c ${R}/lib/send_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
send_suback.o : send_suback.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
send_subscribe.o : ../lib/send_subscribe.c ../lib/send_mosq.h
|
|
|
|
|
send_subscribe.o : ${R}/lib/send_subscribe.c ${R}/lib/send_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
send_unsuback.o : send_unsuback.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
send_unsubscribe.o : ../lib/send_unsubscribe.c ../lib/send_mosq.h
|
|
|
|
|
send_unsubscribe.o : ${R}/lib/send_unsubscribe.c ${R}/lib/send_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
service.o : service.c mosquitto_broker_internal.h
|
|
|
|
@ -364,7 +365,7 @@ session_expiry.o : session_expiry.c mosquitto_broker_internal.h
|
|
|
|
|
signals.o : signals.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
strings_mosq.o : ../lib/strings_mosq.c mosquitto_broker_internal.h
|
|
|
|
|
strings_mosq.o : ${R}/lib/strings_mosq.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
subs.o : subs.c mosquitto_broker_internal.h
|
|
|
|
@ -373,22 +374,22 @@ subs.o : subs.c mosquitto_broker_internal.h
|
|
|
|
|
sys_tree.o : sys_tree.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
time_mosq.o : ../lib/time_mosq.c ../lib/time_mosq.h
|
|
|
|
|
time_mosq.o : ${R}/lib/time_mosq.c ${R}/lib/time_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
tls_mosq.o : ../lib/tls_mosq.c
|
|
|
|
|
tls_mosq.o : ${R}/lib/tls_mosq.c
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
topic_tok.o : topic_tok.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
util_mosq.o : ../lib/util_mosq.c ../lib/util_mosq.h
|
|
|
|
|
util_mosq.o : ${R}/lib/util_mosq.c ${R}/lib/util_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
util_topic.o : ../lib/util_topic.c ../lib/util_mosq.h
|
|
|
|
|
util_topic.o : ${R}/lib/util_topic.c ${R}/lib/util_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
utf8_mosq.o : ../lib/utf8_mosq.c
|
|
|
|
|
utf8_mosq.o : ${R}/lib/utf8_mosq.c
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
websockets.o : websockets.c mosquitto_broker_internal.h
|
|
|
|
@ -397,7 +398,7 @@ websockets.o : websockets.c mosquitto_broker_internal.h
|
|
|
|
|
will_delay.o : will_delay.c mosquitto_broker_internal.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
will_mosq.o : ../lib/will_mosq.c ../lib/will_mosq.h
|
|
|
|
|
will_mosq.o : ${R}/lib/will_mosq.c ${R}/lib/will_mosq.h
|
|
|
|
|
${CROSS_COMPILE}${CC} $(BROKER_CPPFLAGS) $(BROKER_CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
xtreport.o : xtreport.c
|
|
|
|
@ -407,8 +408,8 @@ install : all
|
|
|
|
|
$(INSTALL) -d "${DESTDIR}$(prefix)/sbin"
|
|
|
|
|
$(INSTALL) ${STRIP_OPTS} mosquitto "${DESTDIR}${prefix}/sbin/mosquitto"
|
|
|
|
|
$(INSTALL) -d "${DESTDIR}$(prefix)/include"
|
|
|
|
|
$(INSTALL) ../include/mosquitto_broker.h "${DESTDIR}${prefix}/include/mosquitto_broker.h"
|
|
|
|
|
$(INSTALL) ../include/mosquitto_plugin.h "${DESTDIR}${prefix}/include/mosquitto_plugin.h"
|
|
|
|
|
$(INSTALL) ${R}/include/mosquitto_broker.h "${DESTDIR}${prefix}/include/mosquitto_broker.h"
|
|
|
|
|
$(INSTALL) ${R}/include/mosquitto_plugin.h "${DESTDIR}${prefix}/include/mosquitto_plugin.h"
|
|
|
|
|
|
|
|
|
|
uninstall :
|
|
|
|
|
-rm -f "${DESTDIR}${prefix}/sbin/mosquitto"
|
|
|
|
|