summaryrefslogtreecommitdiffstats
path: root/Makefile.am
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-03-28 22:01:05 +0000
committerAndreas Schneider <mail@cynapses.org>2009-03-28 22:01:05 +0000
commitfc8ad69f5ce850f825521ccc1cd38653feca2ed0 (patch)
tree1644dcac93265693ecacb808baf720b73b7c6b3c /Makefile.am
parent78b6e25ededc7df14304b002fd8697232ca97e46 (diff)
downloadlibssh-fc8ad69f5ce850f825521ccc1cd38653feca2ed0.tar.gz
libssh-fc8ad69f5ce850f825521ccc1cd38653feca2ed0.tar.xz
libssh-fc8ad69f5ce850f825521ccc1cd38653feca2ed0.zip
Remove autotools and win32 specific files.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@295 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am44
1 files changed, 0 insertions, 44 deletions
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index b3c3502d..00000000
--- a/Makefile.am
+++ /dev/null
@@ -1,44 +0,0 @@
-SUBDIRS = libssh include
-
-AM_CPPFLAGS = -I$(srcdir)/include
-
-LDADD = $(top_builddir)/libssh/libssh.la
-
-noinst_PROGRAMS = samplesshd samplessh
-
-noinst_DATA = samplesftp doxygen
-
-samplessh_SOURCES = sample.c
-
-samplesshd_SOURCES = samplesshd.c
-
-samplesftp: samplessh
- $(LN_S) -f samplessh samplesftp
-
-if HAS_DOXYGEN
-install-doc: doxygen
- $(INSTALL) -d $(DESTDIR)$(docdir)/html
- $(INSTALL) --mode=644 doxygen/html/* $(DESTDIR)$(docdir)/html
- $(INSTALL) -d $(DESTDIR)$(docdir)/examples
- $(INSTALL) --mode=644 sample.c samplesshd.c $(DESTDIR)$(docdir)/examples
- $(INSTALL) -d $(DESTDIR)$(mandir)/man3
- $(INSTALL) --mode=644 doxygen/man/man3/* $(DESTDIR)$(mandir)/man3
-
-doxygen: clean-local
- @echo "Running doxygen..."
- doxygen $(srcdir)/Doxyfile
-doxygen-dev: clean-local
- @echo "Running internal doxygen"
- doxygen $(srcdir)/Doxyfile.internal
-else
-doxygen:
-doxygen-dev:
-install-doc: doxygen
-endif
-
-clean-local:
- -rm -rf doxygen
-
-EXTRA_DIST = Doxyfile Doxyfile.internal
-
-CLEANFILES = samplesftp