]> andersk Git - openssh.git/blobdiff - Makefile.in
- Added BSD compatible install program and autoconf test, thanks to
[openssh.git] / Makefile.in
index 436bc2ea112b73b85c32bb37c4f906a81f31c676..ec7f0fd7519bcf9dbc649661e3415e891e4374b9 100644 (file)
@@ -2,81 +2,108 @@ prefix=@prefix@
 exec_prefix=@exec_prefix@
 bindir=@bindir@
 sbindir=@sbindir@
-libdir=@libdir@
+libexecdir=@libexecdir@
 mandir=@mandir@
+sysconfdir=@sysconfdir@
+
+SSH_PROGRAM=@bindir@/ssh
+ASKPASS_PROGRAM=@libexecdir@/ssh/ssh-askpass
 
 CC=@CC@
-OPT_FLAGS=-g
-CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"@sysconfdir@\" @DEFS@
-TARGETS=bin/libssh.a bin/ssh bin/sshd bin/ssh-add bin/ssh-keygen bin/ssh-agent bin/scp
-LFLAGS=-L./bin
-LIBS=-lssh @LIBS@
+PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DASKPASS_PROGRAM=\"$(ASKPASS_PROGRAM)\"
+CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
+EXTRA_TARGETS=@GNOME_ASKPASS@
+TARGETS=libssh.a ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
+LIBS=@LIBS@
 AR=@AR@
 RANLIB=@RANLIB@
+INSTALL=@INSTALL@
+LFLAGS=@LDFLAGS@
+
+GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
+GNOME_LIBS=`gnome-config --libs gnome gnomeui`
 
 OBJS=  authfd.o authfile.o auth-passwd.o auth-rhosts.o auth-rh-rsa.o \
-               auth-rsa.o bufaux.o buffer.o canohost.o channels.o cipher.o \
-               clientloop.o compress.o crc32.o deattack.o helper.o hostfile.o \
-               log-client.o login.o log-server.o match.o mpaux.o packet.o pty.o \
-               readconf.o readpass.o rsa.o servconf.o serverloop.o \
+               auth-rsa.o auth-skey.o bufaux.o buffer.o canohost.o channels.o \
+               cipher.o clientloop.o compress.o crc32.o deattack.o helper.o \
+               hostfile.o log-client.o login.o log-server.o match.o mpaux.o \
+               packet.o pty.o readconf.o readpass.o rsa.o servconf.o serverloop.o \
                sshconnect.o tildexpand.o ttymodes.o uidswap.o xmalloc.o \
-               helper.o mktemp.o strlcpy.o rc4.o
+               helper.o bsd-mktemp.o bsd-strlcpy.o bsd-strlcat.o bsd-daemon.o \
+               bsd-login.o rc4.o md5crypt.o
 
 all: $(OBJS) $(TARGETS)
 
-bin/libssh.a: authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o hostfile.o match.o mpaux.o nchan.o packet.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o xmalloc.o helper.o rc4.o mktemp.o strlcpy.o
-       [ -d bin ] || mkdir bin
+libssh.a: authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o hostfile.o match.o mpaux.o nchan.o packet.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o xmalloc.o helper.o rc4.o bsd-mktemp.o bsd-strlcpy.o bsd-strlcat.o log.o fingerprint.o
        $(AR) rv $@ $^
        $(RANLIB) $@
 
-bin/ssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o
-       [ -d bin ] || mkdir bin
+ssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o libssh.a
        $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 
 
-bin/sshd:      sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o servconf.o serverloop.o
-       [ -d bin ] || mkdir bin
+sshd:  sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o servconf.o serverloop.o bsd-login.o bsd-daemon.o md5crypt.o libssh.a
        $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 
 
-bin/scp:       scp.o
-       [ -d bin ] || mkdir bin
+scp:   scp.o libssh.a
        $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 
 
-bin/ssh-add: ssh-add.o log-client.o
-       [ -d bin ] || mkdir bin
+ssh-add: ssh-add.o log-client.o libssh.a
        $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 
 
-bin/ssh-agent: ssh-agent.o log-client.o
-       [ -d bin ] || mkdir bin
+ssh-agent: ssh-agent.o log-client.o libssh.a
        $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 
 
-bin/ssh-keygen: ssh-keygen.o log-client.o
-       [ -d bin ] || mkdir bin
+ssh-keygen: ssh-keygen.o log-client.o libssh.a
        $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 
 
+gnome-ssh-askpass: gnome-ssh-askpass.c
+       $(CC) $(CFLAGS) $(GNOME_CFLAGS) -o $@ gnome-ssh-askpass.c $(GNOME_LIBS)
+
 clean:
-       rm -f *.o core bin/* config.status config.cache config.log
-       
-install:
-       install -d $(bindir)
-       install -d $(sbindir)
-       install -d $(mandir)
-       install -d $(mandir)/man1
-       install -d $(mandir)/man8
-       install -s -c bin/ssh $(bindir)/ssh
-       install -s -c bin/scp $(bindir)/scp
-       install -s -c bin/ssh-add $(bindir)/ssh-add
-       install -s -c bin/ssh-agent $(bindir)/ssh-agent
-       install -s -c bin/ssh-keygen $(bindir)/ssh-keygen
-       install -s -c bin/sshd $(sbindir)/sshd
-       install -m644 -c ssh.1 $(mandir)/man1/ssh.1
-       install -m644 -c scp.1 $(mandir)/man1/scp.1
-       install -m644 -c ssh-add.1 $(mandir)/man1/ssh-add.1
-       install -m644 -c ssh-agent.1 $(mandir)/man1/ssh-agent.1
-       install -m644 -c ssh-keygen.1 $(mandir)/man1/ssh-keygen.1
-       install -m644 -c sshd.8 $(mandir)/man8/sshd.8
+       rm -f *.o core $(TARGETS) config.status config.cache config.log
+
+install: all
+       $(INSTALL) -d $(bindir)
+       $(INSTALL) -d $(sbindir)
+       $(INSTALL) -d $(mandir)
+       $(INSTALL) -d $(mandir)/man1
+       $(INSTALL) -d $(mandir)/man8
+       $(INSTALL) -s -c ssh $(bindir)/ssh
+       $(INSTALL) -s -c scp $(bindir)/scp
+       $(INSTALL) -s -c ssh-add $(bindir)/ssh-add
+       $(INSTALL) -s -c ssh-agent $(bindir)/ssh-agent
+       $(INSTALL) -s -c ssh-keygen $(bindir)/ssh-keygen
+       $(INSTALL) -s -c sshd $(sbindir)/sshd
+       $(INSTALL) -m644 -c ssh.1 $(mandir)/man1/ssh.1
+       $(INSTALL) -m644 -c scp.1 $(mandir)/man1/scp.1
+       $(INSTALL) -m644 -c ssh-add.1 $(mandir)/man1/ssh-add.1
+       $(INSTALL) -m644 -c ssh-agent.1 $(mandir)/man1/ssh-agent.1
+       $(INSTALL) -m644 -c ssh-keygen.1 $(mandir)/man1/ssh-keygen.1
+       $(INSTALL) -m644 -c sshd.8 $(mandir)/man8/sshd.8
+       ln -sf ssh $(bindir)/slogin
+       ln -sf ssh.1 $(mandir)/man1/slogin.1
+
+       if [ "x@INSTALL_ASKPASS@" = "xyes" ] ; then \
+               $(INSTALL) -d $(libexecdir) ; \
+               $(INSTALL) -d $(libexecdir)/ssh ; \
+               if [ -z "@GNOME_ASKPASS@" ] ; then \
+                       $(INSTALL) -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \
+               else \
+                       $(INSTALL) -m755 -c gnome-ssh-askpass ${ASKPASS_PROGRAM}; \
+               fi ; \
+       fi
+
+       if [ ! -f $(sysconfdir)/ssh_config -a ! -f $(sysconfdir)/sshd_config ]; then \
+               $(INSTALL) -d $(sysconfdir); \
+               $(INSTALL) -m644 ssh_config $(sysconfdir)/ssh_config; \
+               $(INSTALL) -m644 sshd_config $(sysconfdir)/sshd_config; \
+       fi
 
 distclean: clean
-       rm -f Makefile config.h *~
-       rm -rf bin
+       rm -f Makefile config.h core *~
 
 mrproper: distclean
+
+veryclean: distclean
+       rm -f configure config.h.in
+
This page took 0.065277 seconds and 4 git commands to generate.