Annotation of embedaddon/strongswan/src/libstrongswan/plugins/newhope/Makefile.am, revision 1.1
1.1 ! misho 1: AM_CPPFLAGS = \
! 2: -I$(top_srcdir)/src/libstrongswan \
! 3: -I$(top_srcdir)/src/libstrongswan/math/libnttfft
! 4:
! 5: AM_CFLAGS = \
! 6: $(PLUGIN_CFLAGS)
! 7:
! 8: # these files are also used by the tests, we can't directly refer to them
! 9: # because of the subdirectory, which would cause distclean to fail
! 10: noinst_LTLIBRARIES = libnewhope.la
! 11: libnewhope_la_SOURCES = \
! 12: newhope_ke.h newhope_ke.c \
! 13: newhope_noise.h newhope_noise.c \
! 14: newhope_reconciliation.h newhope_reconciliation.c
! 15:
! 16: libnewhope_la_LIBADD = \
! 17: $(top_builddir)/src/libstrongswan/math/libnttfft/libnttfft.la
! 18:
! 19: if MONOLITHIC
! 20: noinst_LTLIBRARIES += libstrongswan-newhope.la
! 21: else
! 22: plugin_LTLIBRARIES = libstrongswan-newhope.la
! 23: endif
! 24:
! 25: libstrongswan_newhope_la_SOURCES = \
! 26: newhope_plugin.h newhope_plugin.c
! 27:
! 28: libstrongswan_newhope_la_LDFLAGS = -module -avoid-version
! 29:
! 30: libstrongswan_newhope_la_LIBADD = libnewhope.la
! 31:
! 32:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>