mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-26 03:54:12 +08:00
28 lines
429 B
Makefile
28 lines
429 B
Makefile
# $Id: Makefile.in,v 1.2 2001/09/20 18:39:37 tim Exp $
|
|
|
|
prefix=@prefix@
|
|
datadir=@datadir@
|
|
srcdir=@srcdir@
|
|
top_srcdir=@top_srcdir@
|
|
|
|
INSTALL=@INSTALL@
|
|
|
|
VPATH=@srcdir@
|
|
|
|
all:
|
|
|
|
Ssh.bin: Ssh.bin.uu
|
|
uudecode Ssh.bin.uu
|
|
|
|
clean:
|
|
rm -rf Ssh.bin
|
|
|
|
distprep: Ssh.bin
|
|
|
|
distclean: clean
|
|
rm -f Makefile *~
|
|
|
|
install: Ssh.bin
|
|
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir)
|
|
$(INSTALL) -m 0644 $(srcdir)/Ssh.bin $(DESTDIR)$(datadir)/Ssh.bin
|