9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
12 #
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 #
19 # CDDL HEADER END
20 #
21
22 #
23 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 #
26
27 include ../Makefile.cmd
28
29 # libopenbsd-compat and libssh are used by all SSH binaries, and sftp-server is
30 # also used as an internal part of sshd.
31 SUBDIRS= \
32 etc \
33 libopenbsd-compat \
34 libssh \
35 sftp-server \
36 .WAIT \
37 ssh \
38 sshd \
39 scp \
40 ssh-add \
41 ssh-agent \
42 ssh-keygen \
43 ssh-keysign \
44 ssh-keyscan \
45 sftp \
46 ssh-http-proxy-connect \
47 ssh-socks5-proxy-connect
48
49 MSGFILE=ssh.po
50 POFILE=_messages.po
51
52 CLOBBERFILES += $(MSGFILE) THIRDPARTYLICENSE
53
54 .KEEP_STATE:
55
56 all := TARGET= all
57 clean := TARGET= clean
58 clobber := TARGET= clobber
59 delete := TARGET= delete
60 install := TARGET= install
61 lint := TARGET= lint
62 catalog := TARGET= catalog
63 package := TARGET= package
64 _msg := TARGET= _msg
65 $(POFILE) := TARGET= $(POFILE)
66
67 all clean install lint $(POFILE): $(SUBDIRS)
68 clobber: $(SUBDIRS) clobber_local
69 clobber_local:
70 $(RM) $(CLOBBERFILES)
71
72 all install: THIRDPARTYLICENSE
73
74 check: $(CHECKHDRS)
75
76 # See Makefile.msg.targ for $(MSGFILE) update instructions
77 _msg:
78 $(RM) $(POFILE)
79 $(TOUCH) $(POFILE)
80 $(MAKE) $(POFILE) XGETTEXT=/usr/bin/gxgettext
81 $(CP) $(POFILE) $(MSGFILE)
82 $(CP) $(MSGFILE) $(MSGDOMAIN)
83
84 $(SUBDIRS): FRC
85 cd $@; pwd; $(MAKE) $(TARGET)
86
87 # skip the summary; just include the actual license clauses.
88 THIRDPARTYLICENSE: doc/LICENCE
89 $(SED) -n '/1)/,$$p' doc/LICENCE > $@
90
91 FRC:
|
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
12 #
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 #
19 # CDDL HEADER END
20 #
21
22 #
23 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 #
26
27 include ../Makefile.cmd
28
29 SUBDIRS= \
30 etc
31
32 CLOBBERFILES += $(MSGFILE) THIRDPARTYLICENSE
33
34 .KEEP_STATE:
35
36 all := TARGET= all
37 clean := TARGET= clean
38 clobber := TARGET= clobber
39 install := TARGET= install
40
41 all clean install: $(SUBDIRS)
42
43 lint:
44
45 clobber: $(SUBDIRS) clobber_local
46 clobber_local:
47 $(RM) $(CLOBBERFILES)
48
49 all install: THIRDPARTYLICENSE
50
51 $(SUBDIRS): FRC
52 cd $@; pwd; $(MAKE) $(TARGET)
53
54 # skip the summary; just include the actual license clauses.
55 THIRDPARTYLICENSE: doc/LICENCE
56 $(SED) -n '/1)/,$$p' doc/LICENCE > $@
57
58 FRC:
|