challenger

OAuth 2.0-based authentication service that validates user can receive messages at a certain address
Log | Files | Refs | Submodules | README | LICENSE

Makefile.am (703B)


      1 # This Makefile.am is in the public domain
      2 AM_CPPFLAGS = -I$(top_srcdir)/src/include $(LIBGCRYPT_CFLAGS)
      3 
      4 if USE_COVERAGE
      5   AM_CFLAGS = --coverage -O0
      6   XLIB = -lgcov
      7 endif
      8 
      9 
     10 pkgcfgdir = $(prefix)/share/challenger/config.d/
     11 
     12 pkgcfg_DATA = \
     13   paths.conf
     14 
     15 bin_PROGRAMS = \
     16   challenger-config
     17 
     18 challenger_config_SOURCES = \
     19   challenger-config.c
     20 challenger_config_LDADD = \
     21   libchallengerutil.la \
     22  -lgnunetutil \
     23   $(XLIB)
     24 
     25 EXTRA_DIST = \
     26   $(pkgcfg_DATA)
     27 
     28 lib_LTLIBRARIES = \
     29   libchallengerutil.la
     30 
     31 libchallengerutil_la_SOURCES = \
     32   os_installation.c
     33 libchallengerutil_la_LIBADD = \
     34   -lgnunetutil \
     35   $(XLIB)
     36 libchallengerutil_la_LDFLAGS = \
     37   -version-info 0:1:0 \
     38   -export-dynamic -no-undefined