Annotation of embedaddon/strongswan/src/libstrongswan/plugins/chapoly/Makefile.am, revision 1.1

1.1     ! misho       1: AM_CPPFLAGS = \
        !             2:        -I$(top_srcdir)/src/libstrongswan
        !             3: 
        !             4: AM_CFLAGS = \
        !             5:        $(PLUGIN_CFLAGS)
        !             6: 
        !             7: noinst_LTLIBRARIES =
        !             8: if MONOLITHIC
        !             9: noinst_LTLIBRARIES += libstrongswan-chapoly.la
        !            10: else
        !            11: plugin_LTLIBRARIES = libstrongswan-chapoly.la
        !            12: endif
        !            13: 
        !            14: libstrongswan_chapoly_la_SOURCES = \
        !            15:        chapoly_plugin.h chapoly_plugin.c \
        !            16:        chapoly_drv.h chapoly_drv.c \
        !            17:        chapoly_drv_portable.h chapoly_drv_portable.c \
        !            18:        chapoly_aead.h chapoly_aead.c \
        !            19:        chapoly_xof.h chapoly_xof.c
        !            20: 
        !            21: noinst_LTLIBRARIES += libchapoly-drv-ssse3.la
        !            22: libchapoly_drv_ssse3_la_SOURCES = chapoly_drv_ssse3.h chapoly_drv_ssse3.c
        !            23: if USE_X86X64
        !            24:   libchapoly_drv_ssse3_la_CFLAGS = $(PLUGIN_CFLAGS) -mssse3
        !            25: endif
        !            26: 
        !            27: libstrongswan_chapoly_la_LIBADD = \
        !            28:        libchapoly-drv-ssse3.la
        !            29: 
        !            30: libstrongswan_chapoly_la_LDFLAGS = -module -avoid-version

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>