forked from wolfSSL/wolfssh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinclude.am
More file actions
25 lines (20 loc) · 1.2 KB
/
include.am
File metadata and controls
25 lines (20 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
if BUILD_SSHD
bin_PROGRAMS += apps/wolfsshd/wolfsshd
noinst_HEADERS += apps/wolfsshd/configuration.h \
apps/wolfsshd/auth.h
apps_wolfsshd_wolfsshd_SOURCES = apps/wolfsshd/wolfsshd.c \
apps/wolfsshd/configuration.c \
apps/wolfsshd/auth.c
apps_wolfsshd_wolfsshd_LDADD = src/libwolfssh.la
apps_wolfsshd_wolfsshd_DEPENDENCIES = src/libwolfssh.la
noinst_PROGRAMS += apps/wolfsshd/test/test_configuration.test
check_PROGRAMS += apps/wolfsshd/test/test_configuration.test
apps_wolfsshd_test_test_configuration_test_SOURCES = apps/wolfsshd/test/test_configuration.c \
apps/wolfsshd/configuration.c \
apps/wolfsshd/auth.c
apps_wolfsshd_test_test_configuration_test_LDADD = src/libwolfssh.la
apps_wolfsshd_test_test_configuration_test_DEPENDENCIES = src/libwolfssh.la
apps_wolfsshd_test_test_configuration_test_CPPFLAGS = $(AM_CPPFLAGS) -DWOLFSSH_SSHD -DWOLFSSHD_UNIT_TEST -I$(srcdir)/apps/wolfsshd/
DISTCLEANFILES+= apps/wolfsshd/.libs/wolfsshd \
apps/wolfsshd/test/.libs/test_configuration.test
endif BUILD_SSHD