mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-05-01 03:05:47 +02:00
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
R=../..
|
|
include ${R}/config.mk
|
|
|
|
.PHONY : all binary check clean reallyclean test install uninstall
|
|
|
|
PLUGIN_NAME=mosquitto_sparkplug_aware
|
|
LOCAL_CFLAGS+=-I${R}/include -I${R}/
|
|
LOCAL_LDFLAGS+=-fPIC -shared
|
|
LOCAL_LDADD+=
|
|
|
|
# Objects for this plugin only, built from source in this directory
|
|
OBJS = \
|
|
on_message.o \
|
|
plugin.o
|
|
|
|
# Objects from e.g. the common directory that are not in this directory
|
|
OBJS_EXTERNAL =
|
|
|
|
all : binary
|
|
|
|
binary : ${PLUGIN_NAME}.so
|
|
|
|
${PLUGIN_NAME}.so : ${OBJS} ${OBJS_EXTERNAL}
|
|
$(CROSS_COMPILE)$(CC) $(LOCAL_CPPFLAGS) $(LOCAL_CFLAGS) $(LOCAL_LDFLAGS) $^ -o $@ ${LOCAL_LDADD}
|
|
|
|
${OBJS} : %.o: %.c plugin_global.h
|
|
${CROSS_COMPILE}${CC} $(LOCAL_CPPFLAGS) $(LOCAL_CFLAGS) -c $< -o $@
|
|
|
|
|
|
reallyclean : clean
|
|
clean:
|
|
-rm -f *.o ${PLUGIN_NAME}.so *.gcda *.gcno
|
|
|
|
test-compile:
|
|
check: test
|
|
test:
|
|
|
|
install: ${PLUGIN_NAME}.so
|
|
$(INSTALL) -d "${DESTDIR}$(libdir)"
|
|
$(INSTALL) ${STRIP_OPTS} ${PLUGIN_NAME}.so "${DESTDIR}${libdir}/${PLUGIN_NAME}.so"
|
|
|
|
uninstall :
|
|
-rm -f "${DESTDIR}${libdir}/${PLUGIN_NAME}.so"
|
|
|
|
coverage:
|
|
lcov --capture --directory . --output-file coverage.info --no-external
|
|
genhtml coverage.info --output-directory out
|