wolfssh/src/include.am

23 lines
779 B
Plaintext
Raw Normal View History

2014-06-24 16:48:08 -05:00
# vim:ft=automake
# included from Top Level Makefile.am
# All paths should be given relative to the root
lib_LTLIBRARIES+= src/libwolfssh.la
src_libwolfssh_la_SOURCES = src/ssh.c \
2014-07-28 09:12:54 -05:00
src/internal.c \
src/keygen.c \
2014-06-24 16:48:08 -05:00
src/memory.c \
src/log.c \
src/io.c \
src/port.c
2014-06-24 16:48:08 -05:00
src_libwolfssh_la_CFLAGS = -DBUILDING_WOLFSSH $(AM_CFLAGS)
src_libwolfssh_la_CPPFLAGS = -DBUILDING_WOLFSSH $(AM_CPPFLAGS)
src_libwolfssh_la_LDFLAGS = ${AM_LDFLAGS} -no-undefined -version-info ${WOLFSSH_LIBRARY_VERSION}
src_libwolfssh_la_DEPENDENCIES =
EXTRA_DIST +=
if !BUILD_INLINE
src_libwolfssh_la_SOURCES += src/misc.c
endif