]> andersk Git - gssapi-openssh.git/blobdiff - openssh/Makefile.in
merging OPENSSH_5_2P1_SIMON_20090726_HPN13V6 to trunk:
[gssapi-openssh.git] / openssh / Makefile.in
index ac8d66dc61bfc91cfa0eec33ac571480701616cd..3d10d92c73eafdb232253f87ac07aeab5b022ccc 100644 (file)
@@ -59,6 +59,7 @@ EXEEXT=@EXEEXT@
 
 INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
 INSTALL_SSH_RAND_HELPER=@INSTALL_SSH_RAND_HELPER@
+INSTALL_GSISSH=@INSTALL_GSISSH@
 
 TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-keysign${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) ssh-rand-helper${EXEEXT} sftp-server$(EXEEXT) sftp$(EXEEXT)
 
@@ -86,6 +87,7 @@ SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o \
        monitor_mm.o monitor.o monitor_wrap.o kexdhs.o kexgexs.o \
        auth-krb5.o \
        auth2-gss.o gss-serv.o gss-serv-krb5.o kexgsss.o\
+       gss-serv-gsi.o \
        loginrec.o auth-pam.o auth-shadow.o auth-sia.o md5crypt.o \
        audit.o audit-bsm.o platform.o sftp-server.o sftp-common.o
 
@@ -286,6 +288,20 @@ install-files: scard-install
        ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
        -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
        ln -s ./ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
+       if [ ! -z "$(INSTALL_GSISSH)" ]; then \
+               rm -f $(DESTDIR)$(bindir)/gsissh; \
+               ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/gsissh; \
+               rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/gsissh.1; \
+               ln -s ./ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/gsissh.1; \
+               rm -f $(DESTDIR)$(bindir)/gsiscp; \
+               ln -s ./scp$(EXEEXT) $(DESTDIR)$(bindir)/gsiscp; \
+               rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/gsiscp.1; \
+               ln -s ./scp.1 $(DESTDIR)$(mandir)/$(mansubdir)1/gsiscp.1; \
+               rm -f $(DESTDIR)$(bindir)/gsisftp; \
+               ln -s ./sftp$(EXEEXT) $(DESTDIR)$(bindir)/gsisftp; \
+               rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/gsisftp.1; \
+               ln -s ./sftp.1 $(DESTDIR)$(mandir)/$(mansubdir)1/gsisftp.1; \
+       fi
 
 install-sysconf:
        if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \
@@ -357,6 +373,11 @@ uninstallall:      uninstall
 
 uninstall:
        -rm -f $(DESTDIR)$(bindir)/slogin
+       if [ ! -z "$(INSTALL_GSISSH)" ]; then \
+               rm -f $(DESTDIR)$(bindir)/gsiscp; \
+               rm -f $(DESTDIR)$(bindir)/gsissh; \
+               rm -f $(DESTDIR)$(bindir)/gsisftp; \
+       fi
        -rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT)
        -rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT)
        -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
@@ -370,6 +391,11 @@ uninstall:
        -rm -f $(DESTDIR)$(RAND_HELPER)$(EXEEXT)
        -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
        -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
+       if [ ! -z "$(INSTALL_GSISSH)" ]; then \
+               rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/gsissh.1; \
+               rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/gsiscp.1; \
+               rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/gsisftp.1; \
+       fi
        -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
        -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
        -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
This page took 0.040425 seconds and 4 git commands to generate.