1 Star 0 Fork 0

sx_5431/autossh

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile.in 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
Johan Burati 提交于 2010-04-22 14:33 . Remove spaces at eol
# $Id: Makefile.in,v 1.4 2007/12/16 06:08:04 harding Exp $
#
# @configure_input@
VER= 1.4b
SSH= @path_ssh@
prefix= @prefix@
exec_prefix= @exec_prefix@
bindir= @bindir@
datadir= @datadir@
mandir= @mandir@
SRCDIR= @srcdir@
VPATH= @srcdir@
CC= @CC@
CFLAGS= @CFLAGS@ -DVER=\"$(VER)\" -DSSH_PATH=\"$(SSH)\"
CPPFLAGS= @CPPFLAGS@
OFILES= autossh.o
LD= @LD@
LDFLAGS= @LDFLAGS@
LIBS= @LIBS@
TARGET= autossh
all: $(TARGET)
$(TARGET): $(OFILES)
$(CC) $(CPPFLAGS) -o $(TARGET) $(OFILES) $(LIBS)
clean:
- /bin/rm -f *.o *.a *.core *~
allclean: clean
- /bin/rm -f $(TARGET)
distclean: allclean
- /bin/rm -f config.log config.cache config.status config.h
- /bin/rm -rf autom4te.cache
- /bin/rm -f Makefile
install: $(TARGET)
mkdir -p -m 755 $(bindir)
mkdir -p -m 755 $(prefix)/share/doc/autossh
mkdir -p -m 755 $(datadir)/examples/autossh
mkdir -p -m 755 $(mandir)/man1
cp $(TARGET) $(bindir)
cp CHANGES README $(datadir)/doc/autossh
cp autossh.host $(datadir)/examples/autossh
cp rscreen $(datadir)/examples/autossh
cp autossh.1 $(mandir)/man1
chmod 755 $(bindir)/$(TARGET)
chmod 644 $(datadir)/doc/autossh/CHANGES
chmod 644 $(datadir)/doc/autossh/README
chmod 644 $(datadir)/examples/autossh/autossh.host
chmod 644 $(datadir)/examples/autossh/rscreen
chmod 644 $(mandir)/man1/autossh.1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sx_543100/autossh.git
[email protected]:sx_543100/autossh.git
sx_543100
autossh
autossh
master

搜索帮助