Makefile.am (1377B)
1 # This Makefile.am is in the public domain 2 AM_CPPFLAGS = -I$(top_srcdir)/src/include 3 4 pkgcfgdir = $(prefix)/share/frosix/config.d/ 5 6 pkgcfg_DATA = \ 7 frosix.conf 8 9 bin_PROGRAMS = \ 10 frosix-httpd 11 12 frosix_httpd_SOURCES = \ 13 frosix-httpd.c frosix-httpd.h \ 14 frosix-httpd_mhd.c frosix-httpd_mhd.h \ 15 frosix-httpd_terms.c frosix-httpd_terms.h \ 16 frosix-httpd_config.c frosix-httpd_config.h \ 17 frosix-httpd_seed.c frosix-httpd_seed.h \ 18 frosix-httpd_dkg.h \ 19 frosix-httpd_common.c \ 20 frosix-httpd_dkg-commitment.c \ 21 frosix-httpd_dkg-shares.c \ 22 frosix-httpd_dkg-key.c \ 23 frosix-httpd_auth-challenge.c frosix-httpd_auth.h \ 24 frosix-httpd_sig.h \ 25 frosix-httpd_sig-commitment.c \ 26 frosix-httpd_sig-share.c \ 27 frosix-httpd_dkg-key_delete.c 28 29 frosix_httpd_LDADD = \ 30 $(top_builddir)/src/authorization/libfrosixauthorization.la \ 31 $(top_builddir)/src/frosixdb/libfrosixdb.la \ 32 $(top_builddir)/src/util/libfrosixutil.la \ 33 $(top_builddir)/src/libfrostdistkeygen/libfrostdistkeygen.la \ 34 $(top_builddir)/src/libfrostverify/libfrostverify.la \ 35 $(top_builddir)/src/libfrosthigh/libfrosthigh.la \ 36 $(top_builddir)/src/libfrostlow/libfrostlow.la \ 37 -ljansson \ 38 -ltalermerchant \ 39 -ltalermhd \ 40 -ltalerjson \ 41 -ltalerutil \ 42 -lgnunetcurl \ 43 -lgnunetrest \ 44 -lgnunetjson \ 45 -lgnunetutil \ 46 -lmicrohttpd \ 47 -lsodium \ 48 $(XLIB) 49 50 EXTRA_DIST = \ 51 $(pkgcfg_DATA)