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# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25# ident "%Z%%M% %I% %E% SMI" 26# 27 28LIBRARY= libss.a 29VERS= .1 30 31SSOBJS= \ 32 data.o \ 33 error.o \ 34 execute_cmd.o \ 35 help.o \ 36 invocation.o \ 37 list_rqs.o \ 38 listen.o \ 39 pager.o \ 40 parse.o \ 41 prompt.o \ 42 request_tbl.o \ 43 requests.o \ 44 std_rqs.o 45 46OBJECTS= $(SSOBJS) 47 48# include library definitions 49include ../../Makefile.lib 50 51SRCS= $(SSOBJS:%.o=../%.c) 52 53LIBS= $(DYNLIB) 54 55include $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5 56 57#override liblink 58INS.liblink= -$(RM) $@; $(SYMLINK) $(LIBLINKS)$(VERS) $@ 59 60CPPFLAGS += -DHAVE_LIBSOCKET=1 -DHAVE_LIBNSL=1 -DHAS_STRDUP=1 \ 61 -DUSE_DIRENT_H=1 -DWAIT_USES_INT=1 -DPOSIX_SIGNALS=1 \ 62 -D_REENTRANT -DUSE_SIGPROCMASK=1 -DRETSIGTYPE=void \ 63 -DHAVE_STDARG_H=1 -DHAVE_STDLIB_H=1 -DHAVE_COMPILE=1 \ 64 -DHAVE_UNISTD_H=1 -DHAVE_UMASK=1 -DHAVE_SRAND48=1 \ 65 -DHAVESRAND=1 -DHAVESRANDOM=1 -DHAVE_RE_COMP=1 \ 66 -DHAVE_RE_EXEC=1 -DHAVE_REGCOMP=1 -DHAVE_REGEXEC=1 \ 67 -I$(SRC)/lib/gss_mechs/mech_krb5/include \ 68 -I$(SRC)/lib/krb5 69 70CFLAGS += $(CCVERBOSE) -I.. 71 72DYNFLAGS += $(KRUNPATH) $(KMECHLIB) 73 74LDLIBS += -lc 75 76$(PICS) := CFLAGS += $(XFFLAG) 77 78.KEEP_STATE: 79 80all: $(LIBS) 81 82lint: lintcheck 83 84# include library targets 85include ../../Makefile.targ 86