13 lines
404 B
Text
13 lines
404 B
Text
|
# vim:ft=automake
|
||
|
# All paths should be given relative to the root
|
||
|
|
||
|
if BUILD_FWD
|
||
|
noinst_PROGRAMS += examples/portfwd/portfwd
|
||
|
noinst_HEADERS += examples/portfwd/wolfssh_portfwd.h
|
||
|
examples_portfwd_portfwd_SOURCES = examples/portfwd/portfwd.c
|
||
|
examples_portfwd_portfwd_LDADD = src/libwolfssh.la
|
||
|
examples_portfwd_portfwd_DEPENDENCIES = src/libwolfssh.la
|
||
|
endif
|
||
|
|
||
|
DISTCLEANFILES+= examples/portfwd/.libs/portfwd
|