2007-02-03 01:27:06 +03:00
|
|
|
SUBDIRS = src example tests docs
|
2006-11-20 11:58:29 +03:00
|
|
|
|
2007-03-27 16:44:44 +04:00
|
|
|
include_HEADERS = \
|
|
|
|
include/libssh2.h \
|
|
|
|
include/libssh2_publickey.h \
|
|
|
|
include/libssh2_sftp.h
|
2006-11-20 11:58:29 +03:00
|
|
|
|
2007-06-26 00:48:07 +04:00
|
|
|
NETWAREFILES = nw/keepscreen.c \
|
|
|
|
nw/Makefile \
|
|
|
|
nw/Makefile.netware \
|
2007-07-15 12:22:00 +04:00
|
|
|
nw/nwlib.c \
|
2007-06-26 00:48:07 +04:00
|
|
|
nw/test/Makefile.netware
|
|
|
|
|
2007-07-17 17:22:55 +04:00
|
|
|
EXTRA_DIST = win32 buildconf $(NETWAREFILES) get_ver.awk HACKING maketgz NMakefile
|
2006-12-07 18:53:01 +03:00
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2007-03-27 16:44:44 +04:00
|
|
|
|
2007-04-13 10:06:15 +04:00
|
|
|
.PHONY: ChangeLog
|
2007-03-27 16:44:44 +04:00
|
|
|
ChangeLog:
|
2007-06-18 15:55:41 +04:00
|
|
|
if test -f .cvsusers; then \
|
|
|
|
cvs2cl --utc --fsf --FSF --usermap .cvsusers -I ChangeLog -I .cvs; \
|
|
|
|
fi
|
2007-07-16 01:36:29 +04:00
|
|
|
|
|
|
|
dist-hook:
|
|
|
|
rm -rf $(top_builddir)/tests/log
|
|
|
|
find $(distdir) -name "*.dist" -exec rm {} \;
|
|
|
|
(distit=`find $(srcdir) -name "*.dist"`; \
|
|
|
|
for file in $$distit; do \
|
|
|
|
strip=`echo $$file | sed -e s/^$(srcdir)// -e s/\.dist//`; \
|
|
|
|
cp $$file $(distdir)$$strip; \
|
|
|
|
done)
|