aboutsummaryrefslogtreecommitdiff
path: root/sftp_server/Makefile.in
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2005-08-28 16:22:42 +0000
committerAris Adamantiadis <aris@0xbadc0de.be>2005-08-28 16:22:42 +0000
commitdc0c5c4cfeefae2abc41d2475ed69e8fa26af1ee (patch)
treeace40eae799ba4d63692b69449d5ca7f3329432e /sftp_server/Makefile.in
parentc76e6e496d6065b8cb61c5ea25df6a38619cfdf4 (diff)
downloadlibssh-dc0c5c4cfeefae2abc41d2475ed69e8fa26af1ee.tar.gz
libssh-dc0c5c4cfeefae2abc41d2475ed69e8fa26af1ee.tar.xz
libssh-dc0c5c4cfeefae2abc41d2475ed69e8fa26af1ee.zip
the whole libconfig + my development tree for ACL/ config
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@20 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'sftp_server/Makefile.in')
-rw-r--r--sftp_server/Makefile.in14
1 files changed, 9 insertions, 5 deletions
diff --git a/sftp_server/Makefile.in b/sftp_server/Makefile.in
index 8a261f18..295410c2 100644
--- a/sftp_server/Makefile.in
+++ b/sftp_server/Makefile.in
@@ -1,5 +1,4 @@
-
-OBJECTS= main.o
+OBJECTS= main.o config.o list.o
SHELL = /bin/sh
VPATH = @srcdir@
@@ -15,16 +14,21 @@ libdir = $(prefix)/lib/
mandir = $(prefix)/man/man1
CC = @CC@
-CFLAGS = @CFLAGS@ -Wall -g -I../include/
-LDFLAGS = -L../libssh/ -lssh
-LIBS = @LIBS@
+CFLAGS = @CFLAGS@ -Wall -g -I../include/ -Ilibconfig/
+LDFLAGS = -L../libssh/ -lssh -Llibconfig/
+LIBS = @LIBS@ -lconfig
INSTALL = @INSTALL@
DYLIB_EXTENSION = @DYLIB_EXTENSION@
LIBSSH_LDFLAGS = @LIBSSH_LDFLAGS@
all: sftp_server
+main.o: server.h
+list.o: server.h
+config.o: server.h
+
sftp_server: $(OBJECTS) ../libssh/libssh.$(DYLIB_EXTENSION)
+ make -C libconfig/
$(CC) -o sftp_server $(OBJECTS) $(LIBS) $(LDFLAGS)
install: all
$(top_srcdir)/mkinstalldirs $(incldir)