13 lines
406 B
Text
13 lines
406 B
Text
|
# vim:ft=automake
|
||
|
# All paths should be given relative to the root
|
||
|
|
||
|
if BUILD_EXAMPLE_CLIENTS
|
||
|
noinst_PROGRAMS += examples/client/client
|
||
|
noinst_HEADERS += examples/client/client.h
|
||
|
examples_client_client_SOURCES = examples/client/client.c
|
||
|
examples_client_client_LDADD = src/libwolfssh.la
|
||
|
examples_client_client_DEPENDENCIES = src/libwolfssh.la
|
||
|
endif
|
||
|
|
||
|
DISTCLEANFILES+= examples/client/.libs/client
|