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 2005 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# ident "%Z%%M% %I% %E% SMI" 27# 28# lib/gss_mechs/mech_spnego/Makefile 29# 30# This make file will build mech_spnego.so.1. This shared object 31# contains all the functionality needed to support the 32# SPNEGO GSS-API mechanism. 33# 34 35include ../../Makefile.lib 36 37SUBDIRS= $(MACH) 38$(BUILD64)SUBDIRS += $(MACH64) 39 40HDRS = gssapiP_spnego.h 41HDRDIR = mech 42 43all := TARGET= all 44clean := TARGET= clean 45clobber := TARGET= clobber 46install := TARGET= install 47lint := TARGET= lint 48 49.KEEP_STATE: 50 51all clean clobber install: spec .WAIT $(SUBDIRS) 52 53lint: $(SUBDIRS) 54 55$(SUBDIRS) spec: FRC 56 @cd $@; pwd; $(MAKE) $(TARGET) 57 58FRC: 59 60# EXPORT DELETE START 61# Special target to clean up the source tree for export distribution 62# Warning: This target changes the source tree 63EXPORT_SRC: 64 $(RM) Makefile+ mech/spnego_mech.c+ 65 sed -e "/EXPORT DELETE START/,/EXPORT DELETE END/d" \ 66 < mech/spnego_mech.c > mech/spnego_mech.c+ 67 $(MV) mech/spnego_mech.c+ mech/spnego_mech.c 68 sed -e "/^# EXPORT DELETE START/,/^# EXPORT DELETE END/d" \ 69 < Makefile > Makefile+ 70 $(MV) Makefile+ Makefile 71 $(CHMOD) 444 Makefile mech/spnego_mech.c 72 73# CRYPT DELETE START 74# Special target to clean up the source tree for domestic distribution 75# Warning: This target changes the source tree 76CRYPT_SRC: 77 $(RM) Makefile+ mech/spnego_mech.c+ 78 sed -e "/CRYPT DELETE START/,/CRYPT DELETE END/d" \ 79 < mech/spnego_mech.c > mech/spnego_mech.c+ 80 $(MV) mech/spnego_mech.c+ mech/spnego_mech.c 81 sed -e "/^# CRYPT DELETE START/,/^# CRYPT DELETE END/d" \ 82 < Makefile > Makefile+ 83 $(MV) Makefile+ Makefile 84 $(CHMOD) 444 Makefile mech/spnego_mech.c 85 86# CRYPT DELETE END 87# EXPORT DELETE END 88