frosix

Multiparty signature service (experimental)
Log | Files | Refs | README | LICENSE

Makefile.am (780B)


      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 
      7 EXTRA_DIST = \
      8   frosix-config.in \
      9   $(pkgcfg_DATA)
     10 
     11 edit_script = $(SED) -e 's,%libdir%,$(libdir),'g $(NULL)
     12 
     13 frosix-config: frosix-config.in
     14 	rm -f $@ $@.tmp && \
     15 	$(edit_script) $< >$@.tmp && \
     16 	chmod a-w+x $@.tmp && \
     17 	mv $@.tmp $@
     18 
     19 CLEANFILES = \
     20   frosix-config
     21 
     22 bin_SCRIPTS = \
     23   frosix-config
     24 
     25 lib_LTLIBRARIES = \
     26   libfrosixutil.la
     27 
     28 libfrosixutil_la_SOURCES = \
     29   os_installation.c \
     30   frosix_crypto.c \
     31   frosix-util.c \
     32   pin.c
     33 libfrosixutil_la_LIBADD = \
     34   $(top_builddir)/src/libfrosthigh/libfrosthigh.la \
     35   -lgnunetutil \
     36   -ljansson \
     37   -ltalerutil \
     38   $(XLIB)
     39 libfrosixutil_la_LDFLAGS = \
     40   -version-info 0:0:0 \
     41   -no-undefined