mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-29 00:01:43 +08:00
afefd16b6e
tree and using --src=/full_path/to/openssh Patch by Mark D. Baushke <mdb@juniper.net>
28 lines
439 B
Makefile
28 lines
439 B
Makefile
# $Id: Makefile.in,v 1.3 2001/10/27 00:33:19 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: $(srcdir)/Ssh.bin
|
|
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir)
|
|
$(INSTALL) -m 0644 $(srcdir)/Ssh.bin $(DESTDIR)$(datadir)/Ssh.bin
|