]> andersk Git - openssh.git/blame - Makefile.in
askpass install fix
[openssh.git] / Makefile.in
CommitLineData
5881cd60 1prefix=@prefix@
2exec_prefix=@exec_prefix@
3bindir=@bindir@
4sbindir=@sbindir@
5libdir=@libdir@
bb0dd7f6 6mandir=@mandir@
5881cd60 7
d4f11b59 8SSH_PROGRAM=@bindir@/ssh
9ASKPASS_PROGRAM=@libdir@/ssh/ssh-askpass
10
5881cd60 11CC=@CC@
d4f11b59 12PATHS=-DETCDIR=\"@sysconfdir@\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DASKPASS_PROGRAM=\"$(ASKPASS_PROGRAM)\"
13CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
6a0aeebc 14EXTRA_TARGETS=@GNOME_ASKPASS@
15TARGETS=libssh.a ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
17f0f4a7 16LIBS=@LIBS@
5881cd60 17AR=@AR@
18RANLIB=@RANLIB@
19
17f0f4a7 20GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
21GNOME_LIBS=`gnome-config --libs gnome gnomeui`
22
5881cd60 23OBJS= authfd.o authfile.o auth-passwd.o auth-rhosts.o auth-rh-rsa.o \
24 auth-rsa.o bufaux.o buffer.o canohost.o channels.o cipher.o \
25 clientloop.o compress.o crc32.o deattack.o helper.o hostfile.o \
26 log-client.o login.o log-server.o match.o mpaux.o packet.o pty.o \
27 readconf.o readpass.o rsa.o servconf.o serverloop.o \
28 sshconnect.o tildexpand.o ttymodes.o uidswap.o xmalloc.o \
29 helper.o mktemp.o strlcpy.o rc4.o
30
31all: $(OBJS) $(TARGETS)
32
6a17f9c2 33libssh.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 log.o
5881cd60 34 $(AR) rv $@ $^
35 $(RANLIB) $@
36
17f0f4a7 37ssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o libssh.a
5881cd60 38 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
39
17f0f4a7 40sshd: 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 libssh.a
5881cd60 41 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
42
17f0f4a7 43scp: scp.o libssh.a
5881cd60 44 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
45
17f0f4a7 46ssh-add: ssh-add.o log-client.o libssh.a
5881cd60 47 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
48
17f0f4a7 49ssh-agent: ssh-agent.o log-client.o libssh.a
5881cd60 50 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
51
17f0f4a7 52ssh-keygen: ssh-keygen.o log-client.o libssh.a
5881cd60 53 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
54
17f0f4a7 55gnome-ssh-askpass: gnome-ssh-askpass.c
56 $(CC) $(CFLAGS) $(GNOME_CFLAGS) -o $@ gnome-ssh-askpass.c $(GNOME_LIBS)
57
5881cd60 58clean:
e8162ec0 59 rm -f *.o core $(TARGETS) config.status config.cache config.log
e1a9c08d 60
df16c1f2 61install: all
5881cd60 62 install -d $(bindir)
63 install -d $(sbindir)
bb0dd7f6 64 install -d $(mandir)
65 install -d $(mandir)/man1
66 install -d $(mandir)/man8
e8162ec0 67 install -s -c ssh $(bindir)/ssh
68 install -s -c scp $(bindir)/scp
69 install -s -c ssh-add $(bindir)/ssh-add
70 install -s -c ssh-agent $(bindir)/ssh-agent
71 install -s -c ssh-keygen $(bindir)/ssh-keygen
72 install -s -c sshd $(sbindir)/sshd
bb0dd7f6 73 install -m644 -c ssh.1 $(mandir)/man1/ssh.1
74 install -m644 -c scp.1 $(mandir)/man1/scp.1
75 install -m644 -c ssh-add.1 $(mandir)/man1/ssh-add.1
76 install -m644 -c ssh-agent.1 $(mandir)/man1/ssh-agent.1
77 install -m644 -c ssh-keygen.1 $(mandir)/man1/ssh-keygen.1
78 install -m644 -c sshd.8 $(mandir)/man8/sshd.8
045672f9 79 ln -sf ssh $(bindir)/slogin
80 ln -sf ssh.1 $(mandir)/man1/slogin.1
81
8c16448c 82 if [ ! -z "@INSTALL_ASKPASS@" ] ; then \
75d92691 83 install -d $(libdir) ; \
84 install -d $(libdir)/ssh ; \
045672f9 85 if [ -z "@GNOME_ASKPASS@" ] ; then \
86 install -m755 -c ssh-askpass $(libdir)/ssh/ssh-askpass; \
87 else \
88 install -m755 -c gnome-ssh-askpass $(libdir)/ssh/ssh-askpass; \
75d92691 89 fi ; \
045672f9 90 fi
5881cd60 91
92distclean: clean
e1a9c08d 93 rm -f Makefile config.h core *~
5881cd60 94
95mrproper: distclean
e1a9c08d 96
97veryclean: distclean
d4f11b59 98 rm -f configure config.h.in
99
This page took 0.066547 seconds and 5 git commands to generate.