Makefile.am (1050B)
1 # This Makefile.am is in the public domain 2 AM_CPPFLAGS = -I$(top_srcdir)/src/include 3 4 cfgdir = $(prefix)/share/frosix/config.d/ 5 6 7 pkgcfgdir = $(prefix)/share/frosix/config.d/ 8 plugindir = $(libdir)/frosix 9 pkgdatadir= $(prefix)/share/frosix/ 10 11 EXTRA_DIST = \ 12 $(pkgdata_DATA) \ 13 $(cfg_DATA) \ 14 $(bin_SCRIPTS) 15 16 17 lib_LTLIBRARIES = \ 18 libfrosixauthorization.la 19 20 libfrosixauthorization_la_SOURCES = \ 21 frosix_authorization_plugin.c 22 libfrosixauthorization_la_LIBADD = \ 23 $(LTLIBINTL) 24 libfrosixauthorization_la_LDFLAGS = \ 25 -ltalerutil \ 26 -lgnunetutil \ 27 -lmicrohttpd \ 28 -lltdl \ 29 $(XLIB) 30 31 32 plugin_LTLIBRARIES = \ 33 libfrosix_plugin_authorization_file.la 34 35 36 libfrosix_plugin_authorization_file_la_SOURCES = \ 37 frosix_authorization_plugin_file.c 38 libfrosix_plugin_authorization_file_la_LIBADD = \ 39 $(LTLIBINTL) 40 libfrosix_plugin_authorization_file_la_LDFLAGS = \ 41 $(top_builddir)/src/frosixdb/libfrosixdb.la \ 42 -ltalerjson \ 43 -ltalermhd \ 44 -ltalerutil \ 45 -lgnunetjson \ 46 -lgnunetutil \ 47 -lmicrohttpd \ 48 -ljansson \ 49 $(XLIB)