1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #!/bin/bash
- mkdir -p libmqttclient libmqttclient/include libmqttclient/lib
- cd libmqttclient
- if [ ! -f "Makefile" ]; then
- cat <<-EOF > Makefile
- CC=\$(CROSS_COMPILE)gcc
- SRC = \$(wildcard ../*.c \\
- ../common/*.c \\
- ../common/log/*.c \\
- ../common/log/arch/linux/*.c \\
- ../network/mbedtls/library/*.c \\
- ../network/mbedtls/wrapper/*.c \\
- ../mqtt/*.c \\
- ../mqttclient/*.c \\
- ../network/*.c \\
- ../platform/linux/*.c \\
- )
- INC = -lpthread \\
- -I../common \\
- -I../common/log \\
- -I../network/mbedtls/include \\
- -I../network/mbedtls/include/mbedtls \\
- -I../network/mbedtls/wrapper \\
- -I../mqtt \\
- -I../mqttclient \\
- -I../network \\
- -I../platform/linux \\
- -I../test
- OBJS = \$(patsubst %.c, %.o, \$(SRC))
- FLAG = -g -fpic -I. -Iinclude \$(INC)
- TARGET = libmqttclient.so
- EOF
- echo -e "\n\$(TARGET):\$(OBJS)" >> Makefile
- echo -e "\t\$(CC) -shared \$^ -o \$@" >> Makefile
- echo -e "\n%.o:%.c" >> Makefile
- echo -e "\t\$(CC) -c \$(FLAG) \$^ -o \$@" >> Makefile
- echo -e "\nclean:" >> Makefile
- echo -e "\trm -rf \$(TARGET) \$(OBJS)" >> Makefile
- echo -e "\ninstall:" >> Makefile
- echo -e "\tsudo cp -rdf \$(TARGET) /usr/lib/." >> Makefile
- echo -e "\nremove:" >> Makefile
- echo -e "\tsudo rm -rdf /usr/lib/\$(TARGET)" >> Makefile
- echo -e "\n.PHONY:clean" >> Makefile
- fi
- cp -r ../test/*.h include/.
- cp -r ../mqtt/*.h include/.
- cp -r ../common/*.h include/.
- cp -r ../network/*.h include/.
- cp -r ../mqttclient/*.h include/.
- cp -r ../common/log/*.h include/.
- cp -r ../platform/linux/*.h include/.
- cp -r ../network/mbedtls/include/mbedtls include/.
- cp -r ../network/mbedtls/wrapper/*.h include/.
- if [ " $1" == " " ]; then
- make
- make install
- mv libmqttclient.so lib/.
- make clean
- elif [ "$1" == "remove" ]; then
- make remove
- fi
|