1 # 2 # CDDL HEADER START 3 # 4 # The contents of this file are subject to the terms of the 5 # Common Development and Distribution License (the "License"). 6 # You may not use this file except in compliance with the License. 7 # 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 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 .KEEP_STATE: 53 54 all := TARGET= all 55 clean := TARGET= clean 56 clobber := TARGET= clobber 57 delete := TARGET= delete 58 install := TARGET= install 59 lint := TARGET= lint 60 catalog := TARGET= catalog 61 package := TARGET= package 62 _msg := TARGET= _msg 63 $(POFILE) := TARGET= $(POFILE) 64 65 all clean clobber install lint $(POFILE): $(SUBDIRS) 66 67 clobber: FRC 68 $(RM) THIRDPARTYLICENSE 69 70 all install: THIRDPARTYLICENSE 71 72 check: $(CHECKHDRS) 73 74 # See Makefile.msg.targ for $(MSGFILE) update instructions 75 _msg: 76 $(RM) $(POFILE) 77 $(TOUCH) $(POFILE) 78 $(MAKE) $(POFILE) XGETTEXT=/usr/bin/gxgettext 79 $(CP) $(POFILE) $(MSGFILE) 80 $(CP) $(MSGFILE) $(MSGDOMAIN) 81 82 $(SUBDIRS): FRC 83 cd $@; pwd; $(MAKE) $(TARGET) 84 85 # skip the summary; just include the actual license clauses. 86 THIRDPARTYLICENSE: doc/LICENCE 87 $(SED) -n '/1)/,$$p' doc/LICENCE > $@ 88 89 FRC: 90