91e5416a3e
headers (these should not have been a problem for debian packages) git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@111 7dcaeef0-15fb-0310-b436-a5af3365683c
119 строки
3.5 KiB
Makefile
119 строки
3.5 KiB
Makefile
SHELL = /bin/sh
|
|
VPATH = @srcdir@
|
|
|
|
subdirs = libssh
|
|
top_srcdir = @top_srcdir@
|
|
top_builddir = .
|
|
srcdir = @srcdir@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = $(exec_prefix)/bin
|
|
incldir= $(prefix)/include
|
|
infodir = $(prefix)/info
|
|
libdir = $(prefix)/lib
|
|
mandir = $(prefix)/share/man
|
|
docdir = $(prefix)/share/doc
|
|
|
|
CC = @CC@
|
|
CFLAGS = @CFLAGS@ -Iinclude -Wall
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBS = -lssh -Llibssh
|
|
INSTALL = @INSTALL@
|
|
LN = @LN_S@
|
|
LIBTOOL = @LIBTOOL@
|
|
OBJECTS = sample.o samplesshd.o
|
|
APPS = samplessh samplesftp samplesshd
|
|
VERSION = 0.2
|
|
DISTLIB = libssh-$(VERSION)
|
|
CONFIG = include/libssh/config.h
|
|
|
|
.PHONY: all
|
|
all: $(CONFIG) SUBDIRS $(OBJECTS) $(APPS)
|
|
|
|
.PHONY: SUBDIRS
|
|
SUBDIRS:
|
|
@for dir in ${subdirs}; do \
|
|
(cd $$dir && $(MAKE) all) \
|
|
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
|
done && test -z "$$fail"
|
|
|
|
% : %.o
|
|
$(LIBTOOL) --mode=link $(CC) -o $@ $< $(LDFLAGS) $(LIBS)
|
|
|
|
samplessh: sample.o SUBDIRS
|
|
$(LIBTOOL) --mode=link $(CC) -o $@ $< $(LDFLAGS) $(LIBS)
|
|
|
|
samplesftp: samplessh
|
|
$(LN) -f samplessh samplesftp
|
|
samplesshd: SUBDIRS
|
|
|
|
$(CONFIG):
|
|
$(LN) -f ../../config.h $(CONFIG)
|
|
|
|
.PHONY: dist
|
|
dist:
|
|
rm -fr $(DISTLIB)
|
|
mkdir $(DISTLIB)
|
|
cp Makefile.in configure.in configure config.h.in install-sh \
|
|
ltmain.sh mkinstalldirs config.sub config.guess $(DISTLIB)
|
|
mkdir $(DISTLIB)/libssh
|
|
mkdir $(DISTLIB)/include
|
|
mkdir $(DISTLIB)/include/libssh
|
|
mkdir $(DISTLIB)/doc
|
|
cp libssh/Makefile.in $(DISTLIB)/libssh/
|
|
cp libssh/*.c $(DISTLIB)/libssh/
|
|
cp libssh/libssh.vers $(DISTLIB)/libssh/
|
|
cp include/libssh/libssh.h include/libssh/sftp.h \
|
|
include/libssh/priv.h include/libssh/crypto.h \
|
|
include/libssh/ssh1.h include/libssh/ssh2.h \
|
|
include/libssh/server.h $(DISTLIB)/include/libssh/
|
|
cp *.c COPYING README AUTHORS CHANGELOG Doxyfile $(DISTLIB)/
|
|
#cp doc/* $(DISTLIB)/doc/
|
|
#docs removed coz they are obsolete
|
|
tar czf $(DISTLIB).tgz $(DISTLIB)/
|
|
|
|
.PHONY: doc
|
|
doc:
|
|
doxygen
|
|
|
|
.PHONY: install
|
|
install: all
|
|
@for dir in ${subdirs}; do \
|
|
(cd $$dir && $(MAKE) install) \
|
|
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
|
done && test -z "$$fail"
|
|
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(incldir)/libssh
|
|
$(INSTALL) -m644 include/libssh/libssh.h $(DESTDIR)$(incldir)/libssh/
|
|
$(INSTALL) -m644 include/libssh/config.h $(DESTDIR)$(incldir)/libssh/
|
|
$(INSTALL) -m644 include/libssh/sftp.h $(DESTDIR)$(incldir)/libssh/
|
|
$(INSTALL) -m644 include/libssh/crypto.h $(DESTDIR)$(incldir)/libssh/
|
|
$(INSTALL) -m644 include/libssh/server.h $(DESTDIR)$(incldir)/libssh/
|
|
$(INSTALL) -m644 include/libssh/ssh2.h $(DESTDIR)$(incldir)/libssh/
|
|
$(INSTALL) -m644 include/libssh/ssh1.h $(DESTDIR)$(incldir)/libssh/
|
|
|
|
.PHONY: install-doc
|
|
install-doc: doc
|
|
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(docdir)/libssh/html
|
|
$(INSTALL) doxygen/html/* $(DESTDIR)$(docdir)/libssh/html
|
|
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(docdir)/libssh/examples
|
|
$(INSTALL) sample.c samplesshd.c $(DESTDIR)$(docdir)/libssh/examples
|
|
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man3
|
|
$(INSTALL) doxygen/man/man3/* $(DESTDIR)$(mandir)/man3
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(LIBTOOL) --mode=clean rm -f *~ *.o samplessh samplesftp samplesshd include/libssh/config.h
|
|
rm -rf doxygen
|
|
@for dir in ${subdirs}; do \
|
|
(cd $$dir && $(MAKE) clean) \
|
|
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
|
done && test -z "$$fail"
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
@for dir in ${subdirs}; do \
|
|
(cd $$dir && $(MAKE) distclean) \
|
|
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
|
done && test -z "$$fail"
|
|
rm -f Makefile config.h config.status config.cache config.log libtool
|