-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.in
62 lines (47 loc) · 1.31 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# $Id: Makefile.in,v 1.5 2011/10/12 20:29:22 harding Exp $
#
# @configure_input@
VER= 1.4c
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