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