|
@@ -1,1502 +1,229 @@
|
|
|
-# CMAKE generated file: DO NOT EDIT!
|
|
|
-# Generated by "Unix Makefiles" Generator, CMake Version 3.16
|
|
|
+include ../config.mk
|
|
|
+
|
|
|
+.PHONY : really clean install
|
|
|
+
|
|
|
+MOSQ_OBJS=mosquitto.o \
|
|
|
+ actions.o \
|
|
|
+ callbacks.o \
|
|
|
+ connect.o \
|
|
|
+ handle_auth.o \
|
|
|
+ handle_connack.o \
|
|
|
+ handle_disconnect.o \
|
|
|
+ handle_ping.o \
|
|
|
+ handle_pubackcomp.o \
|
|
|
+ handle_publish.o \
|
|
|
+ handle_pubrec.o \
|
|
|
+ handle_pubrel.o \
|
|
|
+ handle_suback.o \
|
|
|
+ handle_unsuback.o \
|
|
|
+ helpers.o \
|
|
|
+ logging_mosq.o \
|
|
|
+ loop.o \
|
|
|
+ memory_mosq.o \
|
|
|
+ messages_mosq.o \
|
|
|
+ misc_mosq.o \
|
|
|
+ net_mosq_ocsp.o \
|
|
|
+ net_mosq.o \
|
|
|
+ options.o \
|
|
|
+ packet_datatypes.o \
|
|
|
+ packet_mosq.o \
|
|
|
+ property_mosq.o \
|
|
|
+ read_handle.o \
|
|
|
+ send_connect.o \
|
|
|
+ send_disconnect.o \
|
|
|
+ send_mosq.o \
|
|
|
+ send_publish.o \
|
|
|
+ send_subscribe.o \
|
|
|
+ send_unsubscribe.o \
|
|
|
+ socks_mosq.o \
|
|
|
+ srv_mosq.o \
|
|
|
+ strings_mosq.o \
|
|
|
+ thread_mosq.o \
|
|
|
+ time_mosq.o \
|
|
|
+ tls_mosq.o \
|
|
|
+ utf8_mosq.o \
|
|
|
+ util_mosq.o \
|
|
|
+ util_topic.o \
|
|
|
+ will_mosq.o
|
|
|
+
|
|
|
+ALL_DEPS:=
|
|
|
+
|
|
|
+ifeq ($(WITH_SHARED_LIBRARIES),yes)
|
|
|
+ ALL_DEPS+=libmosquitto.so.${SOVERSION}
|
|
|
+endif
|
|
|
+
|
|
|
+ifeq ($(WITH_STATIC_LIBRARIES),yes)
|
|
|
+ ALL_DEPS+=libmosquitto.a
|
|
|
+endif
|
|
|
+
|
|
|
+all : ${ALL_DEPS}
|
|
|
+ifeq ($(WITH_SHARED_LIBRARIES),yes)
|
|
|
+ $(MAKE) -C cpp
|
|
|
+endif
|
|
|
+
|
|
|
+install : all
|
|
|
+ $(INSTALL) -d "${DESTDIR}${libdir}/"
|
|
|
+ifeq ($(WITH_SHARED_LIBRARIES),yes)
|
|
|
+ $(INSTALL) ${STRIP_OPTS} libmosquitto.so.${SOVERSION} "${DESTDIR}${libdir}/libmosquitto.so.${SOVERSION}"
|
|
|
+ ln -sf libmosquitto.so.${SOVERSION} "${DESTDIR}${libdir}/libmosquitto.so"
|
|
|
+endif
|
|
|
+ifeq ($(WITH_STATIC_LIBRARIES),yes)
|
|
|
+ $(INSTALL) ${STRIP_OPTS} libmosquitto.a "${DESTDIR}${libdir}/libmosquitto.a"
|
|
|
+endif
|
|
|
+ $(INSTALL) -d "${DESTDIR}${incdir}/"
|
|
|
+ $(INSTALL) ../include/mosquitto.h "${DESTDIR}${incdir}/mosquitto.h"
|
|
|
+ $(INSTALL) ../include/mqtt_protocol.h "${DESTDIR}${incdir}/mqtt_protocol.h"
|
|
|
+ $(INSTALL) -d "${DESTDIR}${libdir}/pkgconfig"
|
|
|
+ $(INSTALL) -m644 ../libmosquitto.pc.in "${DESTDIR}${libdir}/pkgconfig/libmosquitto.pc"
|
|
|
+ sed ${SEDINPLACE} -e "s#@CMAKE_INSTALL_PREFIX@#${prefix}#" -e "s#@VERSION@#${VERSION}#" "${DESTDIR}${libdir}/pkgconfig/libmosquitto.pc"
|
|
|
+ifeq ($(WITH_SHARED_LIBRARIES),yes)
|
|
|
+ $(MAKE) -C cpp install
|
|
|
+endif
|
|
|
+
|
|
|
+uninstall :
|
|
|
+ -rm -f "${DESTDIR}${libdir}/libmosquitto.so.${SOVERSION}"
|
|
|
+ -rm -f "${DESTDIR}${libdir}/libmosquitto.so"
|
|
|
+ -rm -f "${DESTDIR}${libdir}/libmosquitto.a"
|
|
|
+ -rm -f "${DESTDIR}${incdir}/mosquitto.h"
|
|
|
+
|
|
|
+reallyclean : clean
|
|
|
+
|
|
|
+clean :
|
|
|
+ -rm -f *.o libmosquitto.so.${SOVERSION} libmosquitto.so libmosquitto.a *.gcno *.gcda
|
|
|
+ $(MAKE) -C cpp clean
|
|
|
+
|
|
|
+libmosquitto.so.${SOVERSION} : ${MOSQ_OBJS}
|
|
|
+ ${CROSS_COMPILE}$(CC) -shared $(LIB_LDFLAGS) $^ -o $@ ${LIB_LIBADD}
|
|
|
+
|
|
|
+libmosquitto.a : ${MOSQ_OBJS}
|
|
|
+ ${CROSS_COMPILE}$(AR) cr $@ $^
|
|
|
+
|
|
|
+mosquitto.o : mosquitto.c ../include/mosquitto.h mosquitto_internal.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
+
|
|
|
+actions.o : actions.c ../include/mosquitto.h mosquitto_internal.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
+
|
|
|
+callbacks.o : callbacks.c ../include/mosquitto.h mosquitto_internal.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
+
|
|
|
+connect.o : connect.c ../include/mosquitto.h mosquitto_internal.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
+
|
|
|
+handle_auth.o : handle_auth.c read_handle.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
+
|
|
|
+handle_connack.o : handle_connack.c read_handle.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Default target executed when no arguments are given to make.
|
|
|
-default_target: all
|
|
|
+handle_disconnect.o : handle_disconnect.c read_handle.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-.PHONY : default_target
|
|
|
+handle_publish.o : handle_publish.c read_handle.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
|
|
-.NOTPARALLEL:
|
|
|
+handle_ping.o : handle_ping.c read_handle.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
+handle_pubackcomp.o : handle_pubackcomp.c read_handle.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-#=============================================================================
|
|
|
-# Special targets provided by cmake.
|
|
|
+handle_pubrec.o : handle_pubrec.c read_handle.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Disable implicit rules so canonical targets will work.
|
|
|
-.SUFFIXES:
|
|
|
+handle_pubrel.o : handle_pubrel.c read_handle.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
+handle_suback.o : handle_suback.c read_handle.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Remove some rules from gmake that .SUFFIXES does not remove.
|
|
|
-SUFFIXES =
|
|
|
+handle_unsuback.o : handle_unsuback.c read_handle.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-.SUFFIXES: .hpux_make_needs_suffix_list
|
|
|
+helpers.o : helpers.c
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
+logging_mosq.o : logging_mosq.c logging_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Suppress display of executed commands.
|
|
|
-$(VERBOSE).SILENT:
|
|
|
+loop.o : loop.c ../include/mosquitto.h mosquitto_internal.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
+messages_mosq.o : messages_mosq.c messages_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# A target that is always out of date.
|
|
|
-cmake_force:
|
|
|
+memory_mosq.o : memory_mosq.c memory_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-.PHONY : cmake_force
|
|
|
+misc_mosq.o : misc_mosq.c misc_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-#=============================================================================
|
|
|
-# Set environment variables for the build.
|
|
|
+net_mosq_ocsp.o : net_mosq_ocsp.c net_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# The shell in which to execute make rules.
|
|
|
-SHELL = /bin/sh
|
|
|
+net_mosq.o : net_mosq.c net_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# The CMake executable.
|
|
|
-CMAKE_COMMAND = /usr/bin/cmake
|
|
|
+options.o : options.c ../include/mosquitto.h mosquitto_internal.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# The command to remove a file.
|
|
|
-RM = /usr/bin/cmake -E remove -f
|
|
|
+packet_datatypes.o : packet_datatypes.c packet_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Escaping for special characters.
|
|
|
-EQUALS = =
|
|
|
+packet_mosq.o : packet_mosq.c packet_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# The top-level source directory on which CMake was run.
|
|
|
-CMAKE_SOURCE_DIR = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13
|
|
|
+property_mosq.o : property_mosq.c property_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# The top-level build directory on which CMake was run.
|
|
|
-CMAKE_BINARY_DIR = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13
|
|
|
+read_handle.o : read_handle.c read_handle.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-#=============================================================================
|
|
|
-# Targets provided globally by CMake.
|
|
|
+send_connect.o : send_connect.c send_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Special rule for the target install/strip
|
|
|
-install/strip: preinstall
|
|
|
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
|
|
|
- /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
|
|
-.PHONY : install/strip
|
|
|
+send_disconnect.o : send_disconnect.c send_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Special rule for the target install/strip
|
|
|
-install/strip/fast: preinstall/fast
|
|
|
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
|
|
|
- /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
|
|
-.PHONY : install/strip/fast
|
|
|
+send_mosq.o : send_mosq.c send_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Special rule for the target install/local
|
|
|
-install/local: preinstall
|
|
|
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
|
|
- /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
|
|
-.PHONY : install/local
|
|
|
+send_publish.o : send_publish.c send_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Special rule for the target install/local
|
|
|
-install/local/fast: preinstall/fast
|
|
|
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
|
|
- /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
|
|
-.PHONY : install/local/fast
|
|
|
+send_subscribe.o : send_subscribe.c send_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Special rule for the target install
|
|
|
-install: preinstall
|
|
|
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
|
|
- /usr/bin/cmake -P cmake_install.cmake
|
|
|
-.PHONY : install
|
|
|
+send_unsubscribe.o : send_unsubscribe.c send_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Special rule for the target install
|
|
|
-install/fast: preinstall/fast
|
|
|
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
|
|
- /usr/bin/cmake -P cmake_install.cmake
|
|
|
-.PHONY : install/fast
|
|
|
+socks_mosq.o : socks_mosq.c
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Special rule for the target list_install_components
|
|
|
-list_install_components:
|
|
|
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
|
|
|
-.PHONY : list_install_components
|
|
|
+srv_mosq.o : srv_mosq.c
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Special rule for the target list_install_components
|
|
|
-list_install_components/fast: list_install_components
|
|
|
+strings_mosq.o : strings_mosq.c
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-.PHONY : list_install_components/fast
|
|
|
+thread_mosq.o : thread_mosq.c
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Special rule for the target rebuild_cache
|
|
|
-rebuild_cache:
|
|
|
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
|
|
|
- /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
|
|
-.PHONY : rebuild_cache
|
|
|
+time_mosq.o : time_mosq.c
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Special rule for the target rebuild_cache
|
|
|
-rebuild_cache/fast: rebuild_cache
|
|
|
+tls_mosq.o : tls_mosq.c
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-.PHONY : rebuild_cache/fast
|
|
|
+utf8_mosq.o : utf8_mosq.c
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Special rule for the target edit_cache
|
|
|
-edit_cache:
|
|
|
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
|
|
|
- /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
|
|
-.PHONY : edit_cache
|
|
|
+util_mosq.o : util_mosq.c util_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-# Special rule for the target edit_cache
|
|
|
-edit_cache/fast: edit_cache
|
|
|
+util_topic.o : util_topic.c util_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|
|
|
-.PHONY : edit_cache/fast
|
|
|
-
|
|
|
-# Special rule for the target test
|
|
|
-test:
|
|
|
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..."
|
|
|
- /usr/bin/ctest --force-new-ctest-process $(ARGS)
|
|
|
-.PHONY : test
|
|
|
-
|
|
|
-# Special rule for the target test
|
|
|
-test/fast: test
|
|
|
-
|
|
|
-.PHONY : test/fast
|
|
|
-
|
|
|
-# The main all target
|
|
|
-all: cmake_check_build_system
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(CMAKE_COMMAND) -E cmake_progress_start /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13/CMakeFiles /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13/lib/CMakeFiles/progress.marks
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f CMakeFiles/Makefile2 lib/all
|
|
|
- $(CMAKE_COMMAND) -E cmake_progress_start /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13/CMakeFiles 0
|
|
|
-.PHONY : all
|
|
|
-
|
|
|
-# The main clean target
|
|
|
-clean:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f CMakeFiles/Makefile2 lib/clean
|
|
|
-.PHONY : clean
|
|
|
-
|
|
|
-# The main clean target
|
|
|
-clean/fast: clean
|
|
|
-
|
|
|
-.PHONY : clean/fast
|
|
|
-
|
|
|
-# Prepare targets for installation.
|
|
|
-preinstall: all
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f CMakeFiles/Makefile2 lib/preinstall
|
|
|
-.PHONY : preinstall
|
|
|
-
|
|
|
-# Prepare targets for installation.
|
|
|
-preinstall/fast:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f CMakeFiles/Makefile2 lib/preinstall
|
|
|
-.PHONY : preinstall/fast
|
|
|
-
|
|
|
-# clear depends
|
|
|
-depend:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
|
|
-.PHONY : depend
|
|
|
-
|
|
|
-# Convenience name for target.
|
|
|
-lib/CMakeFiles/libmosquitto.dir/rule:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f CMakeFiles/Makefile2 lib/CMakeFiles/libmosquitto.dir/rule
|
|
|
-.PHONY : lib/CMakeFiles/libmosquitto.dir/rule
|
|
|
-
|
|
|
-# Convenience name for target.
|
|
|
-libmosquitto: lib/CMakeFiles/libmosquitto.dir/rule
|
|
|
-
|
|
|
-.PHONY : libmosquitto
|
|
|
-
|
|
|
-# fast build rule for target.
|
|
|
-libmosquitto/fast:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/build
|
|
|
-.PHONY : libmosquitto/fast
|
|
|
-
|
|
|
-actions.o: actions.c.o
|
|
|
-
|
|
|
-.PHONY : actions.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-actions.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/actions.c.o
|
|
|
-.PHONY : actions.c.o
|
|
|
-
|
|
|
-actions.i: actions.c.i
|
|
|
-
|
|
|
-.PHONY : actions.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-actions.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/actions.c.i
|
|
|
-.PHONY : actions.c.i
|
|
|
-
|
|
|
-actions.s: actions.c.s
|
|
|
-
|
|
|
-.PHONY : actions.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-actions.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/actions.c.s
|
|
|
-.PHONY : actions.c.s
|
|
|
-
|
|
|
-callbacks.o: callbacks.c.o
|
|
|
-
|
|
|
-.PHONY : callbacks.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-callbacks.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/callbacks.c.o
|
|
|
-.PHONY : callbacks.c.o
|
|
|
-
|
|
|
-callbacks.i: callbacks.c.i
|
|
|
-
|
|
|
-.PHONY : callbacks.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-callbacks.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/callbacks.c.i
|
|
|
-.PHONY : callbacks.c.i
|
|
|
-
|
|
|
-callbacks.s: callbacks.c.s
|
|
|
-
|
|
|
-.PHONY : callbacks.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-callbacks.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/callbacks.c.s
|
|
|
-.PHONY : callbacks.c.s
|
|
|
-
|
|
|
-connect.o: connect.c.o
|
|
|
-
|
|
|
-.PHONY : connect.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-connect.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/connect.c.o
|
|
|
-.PHONY : connect.c.o
|
|
|
-
|
|
|
-connect.i: connect.c.i
|
|
|
-
|
|
|
-.PHONY : connect.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-connect.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/connect.c.i
|
|
|
-.PHONY : connect.c.i
|
|
|
-
|
|
|
-connect.s: connect.c.s
|
|
|
-
|
|
|
-.PHONY : connect.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-connect.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/connect.c.s
|
|
|
-.PHONY : connect.c.s
|
|
|
-
|
|
|
-handle_auth.o: handle_auth.c.o
|
|
|
-
|
|
|
-.PHONY : handle_auth.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-handle_auth.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_auth.c.o
|
|
|
-.PHONY : handle_auth.c.o
|
|
|
-
|
|
|
-handle_auth.i: handle_auth.c.i
|
|
|
-
|
|
|
-.PHONY : handle_auth.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-handle_auth.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_auth.c.i
|
|
|
-.PHONY : handle_auth.c.i
|
|
|
-
|
|
|
-handle_auth.s: handle_auth.c.s
|
|
|
-
|
|
|
-.PHONY : handle_auth.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-handle_auth.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_auth.c.s
|
|
|
-.PHONY : handle_auth.c.s
|
|
|
-
|
|
|
-handle_connack.o: handle_connack.c.o
|
|
|
-
|
|
|
-.PHONY : handle_connack.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-handle_connack.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_connack.c.o
|
|
|
-.PHONY : handle_connack.c.o
|
|
|
-
|
|
|
-handle_connack.i: handle_connack.c.i
|
|
|
-
|
|
|
-.PHONY : handle_connack.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-handle_connack.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_connack.c.i
|
|
|
-.PHONY : handle_connack.c.i
|
|
|
-
|
|
|
-handle_connack.s: handle_connack.c.s
|
|
|
-
|
|
|
-.PHONY : handle_connack.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-handle_connack.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_connack.c.s
|
|
|
-.PHONY : handle_connack.c.s
|
|
|
-
|
|
|
-handle_disconnect.o: handle_disconnect.c.o
|
|
|
-
|
|
|
-.PHONY : handle_disconnect.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-handle_disconnect.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_disconnect.c.o
|
|
|
-.PHONY : handle_disconnect.c.o
|
|
|
-
|
|
|
-handle_disconnect.i: handle_disconnect.c.i
|
|
|
-
|
|
|
-.PHONY : handle_disconnect.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-handle_disconnect.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_disconnect.c.i
|
|
|
-.PHONY : handle_disconnect.c.i
|
|
|
-
|
|
|
-handle_disconnect.s: handle_disconnect.c.s
|
|
|
-
|
|
|
-.PHONY : handle_disconnect.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-handle_disconnect.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_disconnect.c.s
|
|
|
-.PHONY : handle_disconnect.c.s
|
|
|
-
|
|
|
-handle_ping.o: handle_ping.c.o
|
|
|
-
|
|
|
-.PHONY : handle_ping.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-handle_ping.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_ping.c.o
|
|
|
-.PHONY : handle_ping.c.o
|
|
|
-
|
|
|
-handle_ping.i: handle_ping.c.i
|
|
|
-
|
|
|
-.PHONY : handle_ping.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-handle_ping.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_ping.c.i
|
|
|
-.PHONY : handle_ping.c.i
|
|
|
-
|
|
|
-handle_ping.s: handle_ping.c.s
|
|
|
-
|
|
|
-.PHONY : handle_ping.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-handle_ping.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_ping.c.s
|
|
|
-.PHONY : handle_ping.c.s
|
|
|
-
|
|
|
-handle_pubackcomp.o: handle_pubackcomp.c.o
|
|
|
-
|
|
|
-.PHONY : handle_pubackcomp.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-handle_pubackcomp.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_pubackcomp.c.o
|
|
|
-.PHONY : handle_pubackcomp.c.o
|
|
|
-
|
|
|
-handle_pubackcomp.i: handle_pubackcomp.c.i
|
|
|
-
|
|
|
-.PHONY : handle_pubackcomp.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-handle_pubackcomp.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_pubackcomp.c.i
|
|
|
-.PHONY : handle_pubackcomp.c.i
|
|
|
-
|
|
|
-handle_pubackcomp.s: handle_pubackcomp.c.s
|
|
|
-
|
|
|
-.PHONY : handle_pubackcomp.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-handle_pubackcomp.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_pubackcomp.c.s
|
|
|
-.PHONY : handle_pubackcomp.c.s
|
|
|
-
|
|
|
-handle_publish.o: handle_publish.c.o
|
|
|
-
|
|
|
-.PHONY : handle_publish.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-handle_publish.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_publish.c.o
|
|
|
-.PHONY : handle_publish.c.o
|
|
|
-
|
|
|
-handle_publish.i: handle_publish.c.i
|
|
|
-
|
|
|
-.PHONY : handle_publish.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-handle_publish.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_publish.c.i
|
|
|
-.PHONY : handle_publish.c.i
|
|
|
-
|
|
|
-handle_publish.s: handle_publish.c.s
|
|
|
-
|
|
|
-.PHONY : handle_publish.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-handle_publish.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_publish.c.s
|
|
|
-.PHONY : handle_publish.c.s
|
|
|
-
|
|
|
-handle_pubrec.o: handle_pubrec.c.o
|
|
|
-
|
|
|
-.PHONY : handle_pubrec.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-handle_pubrec.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_pubrec.c.o
|
|
|
-.PHONY : handle_pubrec.c.o
|
|
|
-
|
|
|
-handle_pubrec.i: handle_pubrec.c.i
|
|
|
-
|
|
|
-.PHONY : handle_pubrec.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-handle_pubrec.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_pubrec.c.i
|
|
|
-.PHONY : handle_pubrec.c.i
|
|
|
-
|
|
|
-handle_pubrec.s: handle_pubrec.c.s
|
|
|
-
|
|
|
-.PHONY : handle_pubrec.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-handle_pubrec.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_pubrec.c.s
|
|
|
-.PHONY : handle_pubrec.c.s
|
|
|
-
|
|
|
-handle_pubrel.o: handle_pubrel.c.o
|
|
|
-
|
|
|
-.PHONY : handle_pubrel.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-handle_pubrel.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_pubrel.c.o
|
|
|
-.PHONY : handle_pubrel.c.o
|
|
|
-
|
|
|
-handle_pubrel.i: handle_pubrel.c.i
|
|
|
-
|
|
|
-.PHONY : handle_pubrel.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-handle_pubrel.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_pubrel.c.i
|
|
|
-.PHONY : handle_pubrel.c.i
|
|
|
-
|
|
|
-handle_pubrel.s: handle_pubrel.c.s
|
|
|
-
|
|
|
-.PHONY : handle_pubrel.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-handle_pubrel.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_pubrel.c.s
|
|
|
-.PHONY : handle_pubrel.c.s
|
|
|
-
|
|
|
-handle_suback.o: handle_suback.c.o
|
|
|
-
|
|
|
-.PHONY : handle_suback.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-handle_suback.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_suback.c.o
|
|
|
-.PHONY : handle_suback.c.o
|
|
|
-
|
|
|
-handle_suback.i: handle_suback.c.i
|
|
|
-
|
|
|
-.PHONY : handle_suback.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-handle_suback.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_suback.c.i
|
|
|
-.PHONY : handle_suback.c.i
|
|
|
-
|
|
|
-handle_suback.s: handle_suback.c.s
|
|
|
-
|
|
|
-.PHONY : handle_suback.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-handle_suback.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_suback.c.s
|
|
|
-.PHONY : handle_suback.c.s
|
|
|
-
|
|
|
-handle_unsuback.o: handle_unsuback.c.o
|
|
|
-
|
|
|
-.PHONY : handle_unsuback.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-handle_unsuback.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_unsuback.c.o
|
|
|
-.PHONY : handle_unsuback.c.o
|
|
|
-
|
|
|
-handle_unsuback.i: handle_unsuback.c.i
|
|
|
-
|
|
|
-.PHONY : handle_unsuback.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-handle_unsuback.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_unsuback.c.i
|
|
|
-.PHONY : handle_unsuback.c.i
|
|
|
-
|
|
|
-handle_unsuback.s: handle_unsuback.c.s
|
|
|
-
|
|
|
-.PHONY : handle_unsuback.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-handle_unsuback.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/handle_unsuback.c.s
|
|
|
-.PHONY : handle_unsuback.c.s
|
|
|
-
|
|
|
-helpers.o: helpers.c.o
|
|
|
-
|
|
|
-.PHONY : helpers.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-helpers.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/helpers.c.o
|
|
|
-.PHONY : helpers.c.o
|
|
|
-
|
|
|
-helpers.i: helpers.c.i
|
|
|
-
|
|
|
-.PHONY : helpers.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-helpers.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/helpers.c.i
|
|
|
-.PHONY : helpers.c.i
|
|
|
-
|
|
|
-helpers.s: helpers.c.s
|
|
|
-
|
|
|
-.PHONY : helpers.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-helpers.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/helpers.c.s
|
|
|
-.PHONY : helpers.c.s
|
|
|
-
|
|
|
-logging_mosq.o: logging_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : logging_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-logging_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/logging_mosq.c.o
|
|
|
-.PHONY : logging_mosq.c.o
|
|
|
-
|
|
|
-logging_mosq.i: logging_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : logging_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-logging_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/logging_mosq.c.i
|
|
|
-.PHONY : logging_mosq.c.i
|
|
|
-
|
|
|
-logging_mosq.s: logging_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : logging_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-logging_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/logging_mosq.c.s
|
|
|
-.PHONY : logging_mosq.c.s
|
|
|
-
|
|
|
-loop.o: loop.c.o
|
|
|
-
|
|
|
-.PHONY : loop.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-loop.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/loop.c.o
|
|
|
-.PHONY : loop.c.o
|
|
|
-
|
|
|
-loop.i: loop.c.i
|
|
|
-
|
|
|
-.PHONY : loop.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-loop.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/loop.c.i
|
|
|
-.PHONY : loop.c.i
|
|
|
-
|
|
|
-loop.s: loop.c.s
|
|
|
-
|
|
|
-.PHONY : loop.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-loop.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/loop.c.s
|
|
|
-.PHONY : loop.c.s
|
|
|
-
|
|
|
-memory_mosq.o: memory_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : memory_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-memory_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/memory_mosq.c.o
|
|
|
-.PHONY : memory_mosq.c.o
|
|
|
-
|
|
|
-memory_mosq.i: memory_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : memory_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-memory_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/memory_mosq.c.i
|
|
|
-.PHONY : memory_mosq.c.i
|
|
|
-
|
|
|
-memory_mosq.s: memory_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : memory_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-memory_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/memory_mosq.c.s
|
|
|
-.PHONY : memory_mosq.c.s
|
|
|
-
|
|
|
-messages_mosq.o: messages_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : messages_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-messages_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/messages_mosq.c.o
|
|
|
-.PHONY : messages_mosq.c.o
|
|
|
-
|
|
|
-messages_mosq.i: messages_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : messages_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-messages_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/messages_mosq.c.i
|
|
|
-.PHONY : messages_mosq.c.i
|
|
|
-
|
|
|
-messages_mosq.s: messages_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : messages_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-messages_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/messages_mosq.c.s
|
|
|
-.PHONY : messages_mosq.c.s
|
|
|
-
|
|
|
-misc_mosq.o: misc_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : misc_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-misc_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/misc_mosq.c.o
|
|
|
-.PHONY : misc_mosq.c.o
|
|
|
-
|
|
|
-misc_mosq.i: misc_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : misc_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-misc_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/misc_mosq.c.i
|
|
|
-.PHONY : misc_mosq.c.i
|
|
|
-
|
|
|
-misc_mosq.s: misc_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : misc_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-misc_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/misc_mosq.c.s
|
|
|
-.PHONY : misc_mosq.c.s
|
|
|
-
|
|
|
-mosquitto.o: mosquitto.c.o
|
|
|
-
|
|
|
-.PHONY : mosquitto.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-mosquitto.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/mosquitto.c.o
|
|
|
-.PHONY : mosquitto.c.o
|
|
|
-
|
|
|
-mosquitto.i: mosquitto.c.i
|
|
|
-
|
|
|
-.PHONY : mosquitto.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-mosquitto.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/mosquitto.c.i
|
|
|
-.PHONY : mosquitto.c.i
|
|
|
-
|
|
|
-mosquitto.s: mosquitto.c.s
|
|
|
-
|
|
|
-.PHONY : mosquitto.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-mosquitto.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/mosquitto.c.s
|
|
|
-.PHONY : mosquitto.c.s
|
|
|
-
|
|
|
-net_mosq.o: net_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : net_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-net_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/net_mosq.c.o
|
|
|
-.PHONY : net_mosq.c.o
|
|
|
-
|
|
|
-net_mosq.i: net_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : net_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-net_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/net_mosq.c.i
|
|
|
-.PHONY : net_mosq.c.i
|
|
|
-
|
|
|
-net_mosq.s: net_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : net_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-net_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/net_mosq.c.s
|
|
|
-.PHONY : net_mosq.c.s
|
|
|
-
|
|
|
-net_mosq_ocsp.o: net_mosq_ocsp.c.o
|
|
|
-
|
|
|
-.PHONY : net_mosq_ocsp.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-net_mosq_ocsp.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/net_mosq_ocsp.c.o
|
|
|
-.PHONY : net_mosq_ocsp.c.o
|
|
|
-
|
|
|
-net_mosq_ocsp.i: net_mosq_ocsp.c.i
|
|
|
-
|
|
|
-.PHONY : net_mosq_ocsp.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-net_mosq_ocsp.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/net_mosq_ocsp.c.i
|
|
|
-.PHONY : net_mosq_ocsp.c.i
|
|
|
-
|
|
|
-net_mosq_ocsp.s: net_mosq_ocsp.c.s
|
|
|
-
|
|
|
-.PHONY : net_mosq_ocsp.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-net_mosq_ocsp.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/net_mosq_ocsp.c.s
|
|
|
-.PHONY : net_mosq_ocsp.c.s
|
|
|
-
|
|
|
-options.o: options.c.o
|
|
|
-
|
|
|
-.PHONY : options.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-options.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/options.c.o
|
|
|
-.PHONY : options.c.o
|
|
|
-
|
|
|
-options.i: options.c.i
|
|
|
-
|
|
|
-.PHONY : options.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-options.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/options.c.i
|
|
|
-.PHONY : options.c.i
|
|
|
-
|
|
|
-options.s: options.c.s
|
|
|
-
|
|
|
-.PHONY : options.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-options.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/options.c.s
|
|
|
-.PHONY : options.c.s
|
|
|
-
|
|
|
-packet_datatypes.o: packet_datatypes.c.o
|
|
|
-
|
|
|
-.PHONY : packet_datatypes.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-packet_datatypes.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/packet_datatypes.c.o
|
|
|
-.PHONY : packet_datatypes.c.o
|
|
|
-
|
|
|
-packet_datatypes.i: packet_datatypes.c.i
|
|
|
-
|
|
|
-.PHONY : packet_datatypes.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-packet_datatypes.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/packet_datatypes.c.i
|
|
|
-.PHONY : packet_datatypes.c.i
|
|
|
-
|
|
|
-packet_datatypes.s: packet_datatypes.c.s
|
|
|
-
|
|
|
-.PHONY : packet_datatypes.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-packet_datatypes.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/packet_datatypes.c.s
|
|
|
-.PHONY : packet_datatypes.c.s
|
|
|
-
|
|
|
-packet_mosq.o: packet_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : packet_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-packet_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/packet_mosq.c.o
|
|
|
-.PHONY : packet_mosq.c.o
|
|
|
-
|
|
|
-packet_mosq.i: packet_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : packet_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-packet_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/packet_mosq.c.i
|
|
|
-.PHONY : packet_mosq.c.i
|
|
|
-
|
|
|
-packet_mosq.s: packet_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : packet_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-packet_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/packet_mosq.c.s
|
|
|
-.PHONY : packet_mosq.c.s
|
|
|
-
|
|
|
-property_mosq.o: property_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : property_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-property_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/property_mosq.c.o
|
|
|
-.PHONY : property_mosq.c.o
|
|
|
-
|
|
|
-property_mosq.i: property_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : property_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-property_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/property_mosq.c.i
|
|
|
-.PHONY : property_mosq.c.i
|
|
|
-
|
|
|
-property_mosq.s: property_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : property_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-property_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/property_mosq.c.s
|
|
|
-.PHONY : property_mosq.c.s
|
|
|
-
|
|
|
-read_handle.o: read_handle.c.o
|
|
|
-
|
|
|
-.PHONY : read_handle.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-read_handle.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/read_handle.c.o
|
|
|
-.PHONY : read_handle.c.o
|
|
|
-
|
|
|
-read_handle.i: read_handle.c.i
|
|
|
-
|
|
|
-.PHONY : read_handle.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-read_handle.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/read_handle.c.i
|
|
|
-.PHONY : read_handle.c.i
|
|
|
-
|
|
|
-read_handle.s: read_handle.c.s
|
|
|
-
|
|
|
-.PHONY : read_handle.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-read_handle.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/read_handle.c.s
|
|
|
-.PHONY : read_handle.c.s
|
|
|
-
|
|
|
-send_connect.o: send_connect.c.o
|
|
|
-
|
|
|
-.PHONY : send_connect.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-send_connect.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_connect.c.o
|
|
|
-.PHONY : send_connect.c.o
|
|
|
-
|
|
|
-send_connect.i: send_connect.c.i
|
|
|
-
|
|
|
-.PHONY : send_connect.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-send_connect.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_connect.c.i
|
|
|
-.PHONY : send_connect.c.i
|
|
|
-
|
|
|
-send_connect.s: send_connect.c.s
|
|
|
-
|
|
|
-.PHONY : send_connect.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-send_connect.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_connect.c.s
|
|
|
-.PHONY : send_connect.c.s
|
|
|
-
|
|
|
-send_disconnect.o: send_disconnect.c.o
|
|
|
-
|
|
|
-.PHONY : send_disconnect.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-send_disconnect.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_disconnect.c.o
|
|
|
-.PHONY : send_disconnect.c.o
|
|
|
-
|
|
|
-send_disconnect.i: send_disconnect.c.i
|
|
|
-
|
|
|
-.PHONY : send_disconnect.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-send_disconnect.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_disconnect.c.i
|
|
|
-.PHONY : send_disconnect.c.i
|
|
|
-
|
|
|
-send_disconnect.s: send_disconnect.c.s
|
|
|
-
|
|
|
-.PHONY : send_disconnect.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-send_disconnect.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_disconnect.c.s
|
|
|
-.PHONY : send_disconnect.c.s
|
|
|
-
|
|
|
-send_mosq.o: send_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : send_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-send_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_mosq.c.o
|
|
|
-.PHONY : send_mosq.c.o
|
|
|
-
|
|
|
-send_mosq.i: send_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : send_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-send_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_mosq.c.i
|
|
|
-.PHONY : send_mosq.c.i
|
|
|
-
|
|
|
-send_mosq.s: send_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : send_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-send_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_mosq.c.s
|
|
|
-.PHONY : send_mosq.c.s
|
|
|
-
|
|
|
-send_publish.o: send_publish.c.o
|
|
|
-
|
|
|
-.PHONY : send_publish.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-send_publish.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_publish.c.o
|
|
|
-.PHONY : send_publish.c.o
|
|
|
-
|
|
|
-send_publish.i: send_publish.c.i
|
|
|
-
|
|
|
-.PHONY : send_publish.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-send_publish.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_publish.c.i
|
|
|
-.PHONY : send_publish.c.i
|
|
|
-
|
|
|
-send_publish.s: send_publish.c.s
|
|
|
-
|
|
|
-.PHONY : send_publish.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-send_publish.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_publish.c.s
|
|
|
-.PHONY : send_publish.c.s
|
|
|
-
|
|
|
-send_subscribe.o: send_subscribe.c.o
|
|
|
-
|
|
|
-.PHONY : send_subscribe.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-send_subscribe.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_subscribe.c.o
|
|
|
-.PHONY : send_subscribe.c.o
|
|
|
-
|
|
|
-send_subscribe.i: send_subscribe.c.i
|
|
|
-
|
|
|
-.PHONY : send_subscribe.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-send_subscribe.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_subscribe.c.i
|
|
|
-.PHONY : send_subscribe.c.i
|
|
|
-
|
|
|
-send_subscribe.s: send_subscribe.c.s
|
|
|
-
|
|
|
-.PHONY : send_subscribe.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-send_subscribe.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_subscribe.c.s
|
|
|
-.PHONY : send_subscribe.c.s
|
|
|
-
|
|
|
-send_unsubscribe.o: send_unsubscribe.c.o
|
|
|
-
|
|
|
-.PHONY : send_unsubscribe.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-send_unsubscribe.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_unsubscribe.c.o
|
|
|
-.PHONY : send_unsubscribe.c.o
|
|
|
-
|
|
|
-send_unsubscribe.i: send_unsubscribe.c.i
|
|
|
-
|
|
|
-.PHONY : send_unsubscribe.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-send_unsubscribe.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_unsubscribe.c.i
|
|
|
-.PHONY : send_unsubscribe.c.i
|
|
|
-
|
|
|
-send_unsubscribe.s: send_unsubscribe.c.s
|
|
|
-
|
|
|
-.PHONY : send_unsubscribe.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-send_unsubscribe.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/send_unsubscribe.c.s
|
|
|
-.PHONY : send_unsubscribe.c.s
|
|
|
-
|
|
|
-socks_mosq.o: socks_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : socks_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-socks_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/socks_mosq.c.o
|
|
|
-.PHONY : socks_mosq.c.o
|
|
|
-
|
|
|
-socks_mosq.i: socks_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : socks_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-socks_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/socks_mosq.c.i
|
|
|
-.PHONY : socks_mosq.c.i
|
|
|
-
|
|
|
-socks_mosq.s: socks_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : socks_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-socks_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/socks_mosq.c.s
|
|
|
-.PHONY : socks_mosq.c.s
|
|
|
-
|
|
|
-srv_mosq.o: srv_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : srv_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-srv_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/srv_mosq.c.o
|
|
|
-.PHONY : srv_mosq.c.o
|
|
|
-
|
|
|
-srv_mosq.i: srv_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : srv_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-srv_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/srv_mosq.c.i
|
|
|
-.PHONY : srv_mosq.c.i
|
|
|
-
|
|
|
-srv_mosq.s: srv_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : srv_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-srv_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/srv_mosq.c.s
|
|
|
-.PHONY : srv_mosq.c.s
|
|
|
-
|
|
|
-strings_mosq.o: strings_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : strings_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-strings_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/strings_mosq.c.o
|
|
|
-.PHONY : strings_mosq.c.o
|
|
|
-
|
|
|
-strings_mosq.i: strings_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : strings_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-strings_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/strings_mosq.c.i
|
|
|
-.PHONY : strings_mosq.c.i
|
|
|
-
|
|
|
-strings_mosq.s: strings_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : strings_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-strings_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/strings_mosq.c.s
|
|
|
-.PHONY : strings_mosq.c.s
|
|
|
-
|
|
|
-thread_mosq.o: thread_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : thread_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-thread_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/thread_mosq.c.o
|
|
|
-.PHONY : thread_mosq.c.o
|
|
|
-
|
|
|
-thread_mosq.i: thread_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : thread_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-thread_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/thread_mosq.c.i
|
|
|
-.PHONY : thread_mosq.c.i
|
|
|
-
|
|
|
-thread_mosq.s: thread_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : thread_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-thread_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/thread_mosq.c.s
|
|
|
-.PHONY : thread_mosq.c.s
|
|
|
-
|
|
|
-time_mosq.o: time_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : time_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-time_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/time_mosq.c.o
|
|
|
-.PHONY : time_mosq.c.o
|
|
|
-
|
|
|
-time_mosq.i: time_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : time_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-time_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/time_mosq.c.i
|
|
|
-.PHONY : time_mosq.c.i
|
|
|
-
|
|
|
-time_mosq.s: time_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : time_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-time_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/time_mosq.c.s
|
|
|
-.PHONY : time_mosq.c.s
|
|
|
-
|
|
|
-tls_mosq.o: tls_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : tls_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-tls_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/tls_mosq.c.o
|
|
|
-.PHONY : tls_mosq.c.o
|
|
|
-
|
|
|
-tls_mosq.i: tls_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : tls_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-tls_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/tls_mosq.c.i
|
|
|
-.PHONY : tls_mosq.c.i
|
|
|
-
|
|
|
-tls_mosq.s: tls_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : tls_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-tls_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/tls_mosq.c.s
|
|
|
-.PHONY : tls_mosq.c.s
|
|
|
-
|
|
|
-utf8_mosq.o: utf8_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : utf8_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-utf8_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/utf8_mosq.c.o
|
|
|
-.PHONY : utf8_mosq.c.o
|
|
|
-
|
|
|
-utf8_mosq.i: utf8_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : utf8_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-utf8_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/utf8_mosq.c.i
|
|
|
-.PHONY : utf8_mosq.c.i
|
|
|
-
|
|
|
-utf8_mosq.s: utf8_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : utf8_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-utf8_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/utf8_mosq.c.s
|
|
|
-.PHONY : utf8_mosq.c.s
|
|
|
-
|
|
|
-util_mosq.o: util_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : util_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-util_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/util_mosq.c.o
|
|
|
-.PHONY : util_mosq.c.o
|
|
|
-
|
|
|
-util_mosq.i: util_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : util_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-util_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/util_mosq.c.i
|
|
|
-.PHONY : util_mosq.c.i
|
|
|
-
|
|
|
-util_mosq.s: util_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : util_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-util_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/util_mosq.c.s
|
|
|
-.PHONY : util_mosq.c.s
|
|
|
-
|
|
|
-util_topic.o: util_topic.c.o
|
|
|
-
|
|
|
-.PHONY : util_topic.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-util_topic.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/util_topic.c.o
|
|
|
-.PHONY : util_topic.c.o
|
|
|
-
|
|
|
-util_topic.i: util_topic.c.i
|
|
|
-
|
|
|
-.PHONY : util_topic.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-util_topic.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/util_topic.c.i
|
|
|
-.PHONY : util_topic.c.i
|
|
|
-
|
|
|
-util_topic.s: util_topic.c.s
|
|
|
-
|
|
|
-.PHONY : util_topic.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-util_topic.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/util_topic.c.s
|
|
|
-.PHONY : util_topic.c.s
|
|
|
-
|
|
|
-will_mosq.o: will_mosq.c.o
|
|
|
-
|
|
|
-.PHONY : will_mosq.o
|
|
|
-
|
|
|
-# target to build an object file
|
|
|
-will_mosq.c.o:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/will_mosq.c.o
|
|
|
-.PHONY : will_mosq.c.o
|
|
|
-
|
|
|
-will_mosq.i: will_mosq.c.i
|
|
|
-
|
|
|
-.PHONY : will_mosq.i
|
|
|
-
|
|
|
-# target to preprocess a source file
|
|
|
-will_mosq.c.i:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/will_mosq.c.i
|
|
|
-.PHONY : will_mosq.c.i
|
|
|
-
|
|
|
-will_mosq.s: will_mosq.c.s
|
|
|
-
|
|
|
-.PHONY : will_mosq.s
|
|
|
-
|
|
|
-# target to generate assembly for a file
|
|
|
-will_mosq.c.s:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(MAKE) -f lib/CMakeFiles/libmosquitto.dir/build.make lib/CMakeFiles/libmosquitto.dir/will_mosq.c.s
|
|
|
-.PHONY : will_mosq.c.s
|
|
|
-
|
|
|
-# Help Target
|
|
|
-help:
|
|
|
- @echo "The following are some of the valid targets for this Makefile:"
|
|
|
- @echo "... all (the default if no target is provided)"
|
|
|
- @echo "... clean"
|
|
|
- @echo "... depend"
|
|
|
- @echo "... install/strip"
|
|
|
- @echo "... install/local"
|
|
|
- @echo "... install"
|
|
|
- @echo "... list_install_components"
|
|
|
- @echo "... rebuild_cache"
|
|
|
- @echo "... edit_cache"
|
|
|
- @echo "... test"
|
|
|
- @echo "... libmosquitto"
|
|
|
- @echo "... actions.o"
|
|
|
- @echo "... actions.i"
|
|
|
- @echo "... actions.s"
|
|
|
- @echo "... callbacks.o"
|
|
|
- @echo "... callbacks.i"
|
|
|
- @echo "... callbacks.s"
|
|
|
- @echo "... connect.o"
|
|
|
- @echo "... connect.i"
|
|
|
- @echo "... connect.s"
|
|
|
- @echo "... handle_auth.o"
|
|
|
- @echo "... handle_auth.i"
|
|
|
- @echo "... handle_auth.s"
|
|
|
- @echo "... handle_connack.o"
|
|
|
- @echo "... handle_connack.i"
|
|
|
- @echo "... handle_connack.s"
|
|
|
- @echo "... handle_disconnect.o"
|
|
|
- @echo "... handle_disconnect.i"
|
|
|
- @echo "... handle_disconnect.s"
|
|
|
- @echo "... handle_ping.o"
|
|
|
- @echo "... handle_ping.i"
|
|
|
- @echo "... handle_ping.s"
|
|
|
- @echo "... handle_pubackcomp.o"
|
|
|
- @echo "... handle_pubackcomp.i"
|
|
|
- @echo "... handle_pubackcomp.s"
|
|
|
- @echo "... handle_publish.o"
|
|
|
- @echo "... handle_publish.i"
|
|
|
- @echo "... handle_publish.s"
|
|
|
- @echo "... handle_pubrec.o"
|
|
|
- @echo "... handle_pubrec.i"
|
|
|
- @echo "... handle_pubrec.s"
|
|
|
- @echo "... handle_pubrel.o"
|
|
|
- @echo "... handle_pubrel.i"
|
|
|
- @echo "... handle_pubrel.s"
|
|
|
- @echo "... handle_suback.o"
|
|
|
- @echo "... handle_suback.i"
|
|
|
- @echo "... handle_suback.s"
|
|
|
- @echo "... handle_unsuback.o"
|
|
|
- @echo "... handle_unsuback.i"
|
|
|
- @echo "... handle_unsuback.s"
|
|
|
- @echo "... helpers.o"
|
|
|
- @echo "... helpers.i"
|
|
|
- @echo "... helpers.s"
|
|
|
- @echo "... logging_mosq.o"
|
|
|
- @echo "... logging_mosq.i"
|
|
|
- @echo "... logging_mosq.s"
|
|
|
- @echo "... loop.o"
|
|
|
- @echo "... loop.i"
|
|
|
- @echo "... loop.s"
|
|
|
- @echo "... memory_mosq.o"
|
|
|
- @echo "... memory_mosq.i"
|
|
|
- @echo "... memory_mosq.s"
|
|
|
- @echo "... messages_mosq.o"
|
|
|
- @echo "... messages_mosq.i"
|
|
|
- @echo "... messages_mosq.s"
|
|
|
- @echo "... misc_mosq.o"
|
|
|
- @echo "... misc_mosq.i"
|
|
|
- @echo "... misc_mosq.s"
|
|
|
- @echo "... mosquitto.o"
|
|
|
- @echo "... mosquitto.i"
|
|
|
- @echo "... mosquitto.s"
|
|
|
- @echo "... net_mosq.o"
|
|
|
- @echo "... net_mosq.i"
|
|
|
- @echo "... net_mosq.s"
|
|
|
- @echo "... net_mosq_ocsp.o"
|
|
|
- @echo "... net_mosq_ocsp.i"
|
|
|
- @echo "... net_mosq_ocsp.s"
|
|
|
- @echo "... options.o"
|
|
|
- @echo "... options.i"
|
|
|
- @echo "... options.s"
|
|
|
- @echo "... packet_datatypes.o"
|
|
|
- @echo "... packet_datatypes.i"
|
|
|
- @echo "... packet_datatypes.s"
|
|
|
- @echo "... packet_mosq.o"
|
|
|
- @echo "... packet_mosq.i"
|
|
|
- @echo "... packet_mosq.s"
|
|
|
- @echo "... property_mosq.o"
|
|
|
- @echo "... property_mosq.i"
|
|
|
- @echo "... property_mosq.s"
|
|
|
- @echo "... read_handle.o"
|
|
|
- @echo "... read_handle.i"
|
|
|
- @echo "... read_handle.s"
|
|
|
- @echo "... send_connect.o"
|
|
|
- @echo "... send_connect.i"
|
|
|
- @echo "... send_connect.s"
|
|
|
- @echo "... send_disconnect.o"
|
|
|
- @echo "... send_disconnect.i"
|
|
|
- @echo "... send_disconnect.s"
|
|
|
- @echo "... send_mosq.o"
|
|
|
- @echo "... send_mosq.i"
|
|
|
- @echo "... send_mosq.s"
|
|
|
- @echo "... send_publish.o"
|
|
|
- @echo "... send_publish.i"
|
|
|
- @echo "... send_publish.s"
|
|
|
- @echo "... send_subscribe.o"
|
|
|
- @echo "... send_subscribe.i"
|
|
|
- @echo "... send_subscribe.s"
|
|
|
- @echo "... send_unsubscribe.o"
|
|
|
- @echo "... send_unsubscribe.i"
|
|
|
- @echo "... send_unsubscribe.s"
|
|
|
- @echo "... socks_mosq.o"
|
|
|
- @echo "... socks_mosq.i"
|
|
|
- @echo "... socks_mosq.s"
|
|
|
- @echo "... srv_mosq.o"
|
|
|
- @echo "... srv_mosq.i"
|
|
|
- @echo "... srv_mosq.s"
|
|
|
- @echo "... strings_mosq.o"
|
|
|
- @echo "... strings_mosq.i"
|
|
|
- @echo "... strings_mosq.s"
|
|
|
- @echo "... thread_mosq.o"
|
|
|
- @echo "... thread_mosq.i"
|
|
|
- @echo "... thread_mosq.s"
|
|
|
- @echo "... time_mosq.o"
|
|
|
- @echo "... time_mosq.i"
|
|
|
- @echo "... time_mosq.s"
|
|
|
- @echo "... tls_mosq.o"
|
|
|
- @echo "... tls_mosq.i"
|
|
|
- @echo "... tls_mosq.s"
|
|
|
- @echo "... utf8_mosq.o"
|
|
|
- @echo "... utf8_mosq.i"
|
|
|
- @echo "... utf8_mosq.s"
|
|
|
- @echo "... util_mosq.o"
|
|
|
- @echo "... util_mosq.i"
|
|
|
- @echo "... util_mosq.s"
|
|
|
- @echo "... util_topic.o"
|
|
|
- @echo "... util_topic.i"
|
|
|
- @echo "... util_topic.s"
|
|
|
- @echo "... will_mosq.o"
|
|
|
- @echo "... will_mosq.i"
|
|
|
- @echo "... will_mosq.s"
|
|
|
-.PHONY : help
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-#=============================================================================
|
|
|
-# Special targets to cleanup operation of make.
|
|
|
-
|
|
|
-# Special rule to run CMake to check the build system integrity.
|
|
|
-# No rule that depends on this can have commands that come from listfiles
|
|
|
-# because they might be regenerated.
|
|
|
-cmake_check_build_system:
|
|
|
- cd /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/mosquitto-2.0.13 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
|
|
-.PHONY : cmake_check_build_system
|
|
|
+will_mosq.o : will_mosq.c will_mosq.h
|
|
|
+ ${CROSS_COMPILE}$(CC) $(LIB_CPPFLAGS) $(LIB_CFLAGS) -c $< -o $@
|
|
|
|