mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-02-07 03:52:00 +08:00
22 lines
406 B
Makefile
22 lines
406 B
Makefile
R=../..
|
|
include ${R}/config.mk
|
|
|
|
PLUGIN_NAME=mosquitto_acl_file
|
|
LOCAL_CFLAGS+=
|
|
LOCAL_CPPFLAGS+=-I${R}/src
|
|
LOCAL_LDFLAGS+=
|
|
LOCAL_LIBADD+=${LIBMOSQ_COMMON}
|
|
|
|
# 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
|