1999-10-28 03:25:17 +00:00
|
|
|
prefix=@prefix@
|
|
|
|
exec_prefix=@exec_prefix@
|
|
|
|
bindir=@bindir@
|
|
|
|
sbindir=@sbindir@
|
|
|
|
libdir=@libdir@
|
1999-10-28 23:57:31 +00:00
|
|
|
mandir=@mandir@
|
1999-10-28 03:25:17 +00:00
|
|
|
|
|
|
|
CC=@CC@
|
1999-10-28 04:03:14 +00:00
|
|
|
OPT_FLAGS=-g
|
|
|
|
CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"@sysconfdir@\" @DEFS@
|
1999-10-29 02:06:53 +00:00
|
|
|
TARGETS=libssh.a ssh sshd ssh-add ssh-keygen ssh-agent scp
|
|
|
|
LFLAGS=-L.
|
1999-10-28 23:18:29 +00:00
|
|
|
LIBS=-lssh @LIBS@
|
1999-10-28 03:25:17 +00:00
|
|
|
AR=@AR@
|
|
|
|
RANLIB=@RANLIB@
|
|
|
|
|
|
|
|
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 \
|
|
|
|
sshconnect.o tildexpand.o ttymodes.o uidswap.o xmalloc.o \
|
|
|
|
helper.o mktemp.o strlcpy.o rc4.o
|
|
|
|
|
|
|
|
all: $(OBJS) $(TARGETS)
|
|
|
|
|
1999-10-29 02:06:53 +00:00
|
|
|
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
|
1999-10-28 03:25:17 +00:00
|
|
|
$(AR) rv $@ $^
|
|
|
|
$(RANLIB) $@
|
|
|
|
|
1999-10-29 02:06:53 +00:00
|
|
|
ssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o
|
1999-10-28 03:25:17 +00:00
|
|
|
$(CC) -o $@ $^ $(LFLAGS) $(LIBS)
|
|
|
|
|
1999-10-29 02:06:53 +00:00
|
|
|
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
|
1999-10-28 03:25:17 +00:00
|
|
|
$(CC) -o $@ $^ $(LFLAGS) $(LIBS)
|
|
|
|
|
1999-10-29 02:06:53 +00:00
|
|
|
scp: scp.o
|
1999-10-28 03:25:17 +00:00
|
|
|
$(CC) -o $@ $^ $(LFLAGS) $(LIBS)
|
|
|
|
|
1999-10-29 02:06:53 +00:00
|
|
|
ssh-add: ssh-add.o log-client.o
|
1999-10-28 03:25:17 +00:00
|
|
|
$(CC) -o $@ $^ $(LFLAGS) $(LIBS)
|
|
|
|
|
1999-10-29 02:06:53 +00:00
|
|
|
ssh-agent: ssh-agent.o log-client.o
|
1999-10-28 03:25:17 +00:00
|
|
|
$(CC) -o $@ $^ $(LFLAGS) $(LIBS)
|
|
|
|
|
1999-10-29 02:06:53 +00:00
|
|
|
ssh-keygen: ssh-keygen.o log-client.o
|
1999-10-28 03:25:17 +00:00
|
|
|
$(CC) -o $@ $^ $(LFLAGS) $(LIBS)
|
|
|
|
|
|
|
|
clean:
|
1999-10-29 02:06:53 +00:00
|
|
|
rm -f *.o core $(TARGETS) config.status config.cache config.log
|
1999-10-28 03:25:17 +00:00
|
|
|
|
|
|
|
install:
|
|
|
|
install -d $(bindir)
|
|
|
|
install -d $(sbindir)
|
1999-10-28 23:57:31 +00:00
|
|
|
install -d $(mandir)
|
|
|
|
install -d $(mandir)/man1
|
|
|
|
install -d $(mandir)/man8
|
1999-10-29 02:06:53 +00:00
|
|
|
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
|
1999-10-28 23:57:31 +00:00
|
|
|
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
|
1999-10-28 03:25:17 +00:00
|
|
|
|
|
|
|
distclean: clean
|
1999-10-29 01:49:20 +00:00
|
|
|
rm -f Makefile config.h core configure *~
|
1999-10-28 03:25:17 +00:00
|
|
|
|
|
|
|
mrproper: distclean
|