blob: 8c1201a75a99d750601eb538403f8dc941ad99a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#
# acl library makefile fragment, to be included in Makefile.am
#
dmodule_LTLIBRARIES += acl.la
acl_la_SOURCES = \
qpid/acl/Acl.cpp \
qpid/acl/Acl.h \
qpid/acl/AclData.cpp \
qpid/acl/AclData.h \
qpid/acl/AclPlugin.cpp \
qpid/acl/AclReader.cpp \
qpid/acl/AclReader.h
acl_la_LIBADD = libqpidbroker.la
acl_la_LDFLAGS = $(PLUGINLDFLAGS)
|