xref: /titanic_44/usr/src/cmd/ssh/sshd/Makefile (revision 826ac02a0def83e0a41b29321470d299c7389aab)
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# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
22# Use is subject to license terms.
23#
24# cmd/ssh/sshd/Makefile
25
26PROG= sshd
27
28DIRS= $(ROOTLIBSSH)
29
30OBJS	= sshd.o \
31	  altprivsep.o \
32	  auth.o \
33	  auth1.o \
34	  auth2.o \
35	  auth-options.o \
36	  auth2-chall.o \
37	  auth2-gss.o \
38	  auth2-hostbased.o \
39	  auth2-kbdint.o \
40	  auth2-none.o \
41	  auth2-passwd.o \
42	  auth2-pam.o \
43	  auth2-pubkey.o \
44	  auth-bsdauth.o \
45	  auth-chall.o \
46	  auth-rhosts.o \
47	  auth-krb4.o \
48	  auth-krb5.o \
49	  auth-pam.o \
50	  auth-passwd.o \
51	  auth-rsa.o \
52	  auth-rh-rsa.o \
53	  auth-sia.o \
54	  auth-skey.o \
55	  bsmaudit.o \
56	  groupaccess.o \
57	  gss-serv.o \
58	  loginrec.o \
59	  servconf.o \
60	  serverloop.o \
61	  session.o \
62	  sshlogin.o \
63	  sshpty.o
64
65EXTOBJS = sftp-server.o
66
67SRCS	= $(OBJS:.o=.c) ../sftp-server/sftp-server.c
68
69include ../../Makefile.cmd
70include ../Makefile.ssh-common
71
72LDLIBS += $(SSH_COMMON_LDLIBS) -lsocket \
73	-lnsl \
74	-lz \
75	-lpam \
76	-lbsm \
77	-lwrap \
78	-lgss \
79	-lcontract
80MAPFILES = $(MAPFILE.INT) $(MAPFILE.NGB)
81LDFLAGS += $(MAPFILES:%=-M%)
82
83# libcrypto has no lint library, so we can only use it when building
84$(PROG) := LDLIBS += -lcrypto
85
86POFILE_DIR= ..
87
88.KEEP_STATE:
89
90.PARALLEL: $(OBJS)
91
92all: $(PROG)
93
94$(PROG): $(OBJS) $(EXTOBJS) $(MAPFILES) ../libssh/$(MACH)/libssh.a \
95	../libopenbsd-compat/$(MACH)/libopenbsd-compat.a
96	$(LINK.c) $(OBJS) $(EXTOBJS) -o $@ $(LDLIBS) $(DYNFLAGS)
97	$(POST_PROCESS)
98
99%.o : ../sftp-server/%.c
100	$(COMPILE.c) -o $@ $<
101	$(POST_PROCESS_O)
102
103install: all $(DIRS) $(ROOTLIBSSHPROG) $(ROOTLIBSSH)
104
105
106$(ROOTLIBSSHPROG)/%: %
107	$(INS.file)
108
109$(DIRS):
110	$(INS.dir)
111
112clean:
113	$(RM) $(OBJS) $(EXTOBJS)
114
115lint:	lint_SRCS
116
117include ../Makefile.msg.targ
118include ../../Makefile.targ
119