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, Version 1.0 only 6# (the "License"). You may not use this file except in compliance 7# with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22# 23# Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# ident "%Z%%M% %I% %E% SMI" 27# 28 29LIBRARY= rpcsec.a 30VERS = .1 31 32OBJECTS=rpcsec_gss.o rpcsec_gss_misc.o rpcsec_gss_utils.o svc_rpcsec_gss.o 33 34# include library definitions 35include ../../Makefile.lib 36 37MAPFILE= ../mapfile-vers 38SRCS= $(OBJECTS:%.o=../%.c) 39 40CPPFLAGS += -D_REENTRANT -I$(SRC)/uts/common/gssapi/include \ 41 -I$(SRC)/uts/common 42CFLAGS += $(XFFLAG) 43 44LINTSRC= $(LINTLIB:%.ln=%) 45 46LIBS = $(DYNLIB) 47 48LDLIBS += -lgss -lnsl -lc 49DYNFLAGS += -M$(MAPFILE) 50 51.KEEP_STATE: 52 53lint: lintcheck 54 55# include library targets 56include ../../Makefile.targ 57 58# librpcsec build rules 59 60pics/%.o: ../%.c 61 $(COMPILE.c) -o $@ $< 62 $(POST_PROCESS_O) 63 64$(DYNLIB) : $(MAPFILE) 65