8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / lib / gss_mechs / mech_dh / backend / Makefile.com
blobf2983bd51bbbb54f66d3e17de31fbe0b6ccef97d
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
22 # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23 # Use is subject to license terms.
27 # This make file will build mech_dh.so.1. This shared object
28 # contains all the functionality needed to support Diffie-Hellman GSS-API
29 # mechanism. 
32 LIBRARY= mech_dh.a
33 VERS = .1
35 MECH =  context.o context_establish.o cred.o crypto.o dhmech.o \
36         MICwrap.o name.o oid.o seq.o token.o support.o validate.o
38 DERIVED_OBJS = xdr_token.o
40 CRYPTO = md5.o
42 OBJECTS= $(MECH) $(CRYPTO) $(DERIVED_OBJS)
44 # include library definitions
45 include ../../../../Makefile.lib
47 CPPFLAGS += -I../mech -I../crypto -I$(SRC)/uts/common/gssapi/include
49 CERRWARN +=     -_gcc=-Wno-parentheses
50 CERRWARN +=     -_gcc=-Wno-unused-variable
51 CERRWARN +=     -_gcc=-Wno-uninitialized
53 $(PICS) :=      CFLAGS += $(XFFLAG)
54 $(PICS) :=      CCFLAGS += $(XFFLAG)
55 $(PICS) :=      CFLAGS64 += $(XFFLAG)
56 $(PICS) :=      CCFLAGS64 += $(XFFLAG)
58 DYNFLAGS +=     $(ZIGNORE)
60 LIBS = $(DYNLIB)
61 LIBNAME = $(LIBRARY:%.a=%)
63 MAPFILES =      ../mapfile-vers
65 LDLIBS +=  -lgss -lnsl -lc 
67 RPCGEN += -C
68 SED = sed
70 .KEEP_STATE:
72 CSRCS= $(MECH:%.o=../mech/%.c) $(CRYPTO:%.o=../crypto/%.c)
73 SRCS=   $(CSRCS)
75 ROOTLIBDIR = $(ROOT)/usr/lib/gss
76 ROOTLIBDIR64 = $(ROOT)/usr/lib/$(MACH64)/gss
78 #LINTFLAGS += -dirout=lint -errfmt=simple
79 #LINTFLAGS64 += -dirout=lint -errfmt=simple -errchk all
80 LINTOUT =       lint.out
81 LINTSRC =       $(LINTLIB:%.ln=%)
82 ROOTLINTDIR =   $(ROOTLIBDIR)
83 #ROOTLINT =     $(LINTSRC:%=$(ROOTLINTDIR)/%)
85 CLEANFILES += $(LINTOUT) $(LINTLIB)
87 lint: lintcheck
89 $(ROOTLIBDIR):
90         $(INS.dir)
92 $(ROOTLIBDIR64):
93         $(INS.dir)
95 $(OBJS): ../mech/dh_gssapi.h ../mech/token.h ../mech/oid.h
98 objs/%.o pics/%.o: ../crypto/%.c
99         $(COMPILE.c)  -o $@ $<
100         $(POST_PROCESS_O)
102 objs/%.o pics/%.o: ../mech/%.c
103         $(COMPILE.c)  -o $@ $<
104         $(POST_PROCESS_O)
106 objs/%.o pics/%.o: ../profile/%.c
107         $(COMPILE.c)  -o $@ $<
108         $(POST_PROCESS_O)
110 # include library targets
111 include ../../../../Makefile.targ