mosquitto/plugins/acl-file/Makefile
2025-07-10 00:39:51 +01:00

22 lines
439 B
Makefile

R=../..
include ${R}/config.mk
PLUGIN_NAME=mosquitto_acl_file
LOCAL_CFLAGS+=
LOCAL_CPPFLAGS+=-I${R}/src
LOCAL_LDFLAGS+=
LOCAL_LIBADD+=${R}/libcommon/libmosquitto_common.so.${SOVERSION}
# Objects for this plugin only, built from source in this directory
OBJS = \
acl_check.o \
acl_parse.o \
plugin.o
# Objects from e.g. the common directory that are not in this directory
OBJS_EXTERNAL =
all : binary
include ${R}/plugins/plugin.mk