summaryrefslogtreecommitdiff
path: root/usr/src/lib/krb5/plugins
diff options
context:
space:
mode:
authorRichard Lowe <richlowe@richlowe.net>2020-03-26 21:07:34 -0400
committerRichard Lowe <richlowe@richlowe.net>2020-05-04 16:57:13 -0400
commit241c90a06e8d1708235651863df515a2d522a03a (patch)
treec2d53e1063e09d626cfc0c9cc0c80f51256e7363 /usr/src/lib/krb5/plugins
parent282d4a2d330d797757f16d55e1df9569f3e52d10 (diff)
downloadillumos-gate-241c90a06e8d1708235651863df515a2d522a03a.tar.gz
12454 remove lint library machinery
Reviewed by: Andy Fiddaman <andy@omniosce.org> Reviewed by: Gordon Ross <gwr@nexenta.com> Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/lib/krb5/plugins')
-rw-r--r--usr/src/lib/krb5/plugins/Makefile3
-rw-r--r--usr/src/lib/krb5/plugins/kdb/Makefile6
-rw-r--r--usr/src/lib/krb5/plugins/kdb/db2/Makefile5
-rw-r--r--usr/src/lib/krb5/plugins/kdb/db2/Makefile.com5
-rw-r--r--usr/src/lib/krb5/plugins/kdb/db2/libdb2/Makefile5
-rw-r--r--usr/src/lib/krb5/plugins/kdb/db2/libdb2/Makefile.com11
-rw-r--r--usr/src/lib/krb5/plugins/kdb/ldap/Makefile5
-rw-r--r--usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/Makefile5
-rw-r--r--usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/Makefile.com5
-rw-r--r--usr/src/lib/krb5/plugins/preauth/Makefile3
-rw-r--r--usr/src/lib/krb5/plugins/preauth/pkinit/Makefile3
-rw-r--r--usr/src/lib/krb5/plugins/preauth/pkinit/Makefile.com1
12 files changed, 18 insertions, 39 deletions
diff --git a/usr/src/lib/krb5/plugins/Makefile b/usr/src/lib/krb5/plugins/Makefile
index baeda9e18e..adbd4dadd7 100644
--- a/usr/src/lib/krb5/plugins/Makefile
+++ b/usr/src/lib/krb5/plugins/Makefile
@@ -37,12 +37,11 @@ all := TARGET= all
install := TARGET= install
clean := TARGET= clean
clobber := TARGET= clobber
-lint := TARGET= lint
_msg := TARGET= _msg
.KEEP_STATE:
-all install clean clobber lint _msg: $(SUBDIRS)
+all install clean clobber _msg: $(SUBDIRS)
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
diff --git a/usr/src/lib/krb5/plugins/kdb/Makefile b/usr/src/lib/krb5/plugins/kdb/Makefile
index 98ebdf761e..0b2411bbe6 100644
--- a/usr/src/lib/krb5/plugins/kdb/Makefile
+++ b/usr/src/lib/krb5/plugins/kdb/Makefile
@@ -21,8 +21,7 @@
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
-# ident "%Z%%M% %I% %E% SMI"
-#
+
# include global definitions
include ../../../../Makefile.master
@@ -38,12 +37,11 @@ all := TARGET= all
install := TARGET= install
clean := TARGET= clean
clobber := TARGET= clobber
-lint := TARGET= lint
_msg := TARGET= _msg
.KEEP_STATE:
-all install clean clobber lint _msg: $(SUBDIRS)
+all install clean clobber _msg: $(SUBDIRS)
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
diff --git a/usr/src/lib/krb5/plugins/kdb/db2/Makefile b/usr/src/lib/krb5/plugins/kdb/db2/Makefile
index 81afe989cb..07be6f773a 100644
--- a/usr/src/lib/krb5/plugins/kdb/db2/Makefile
+++ b/usr/src/lib/krb5/plugins/kdb/db2/Makefile
@@ -22,8 +22,6 @@
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
-# ident "%Z%%M% %I% %E% SMI"
-#
include $(SRC)/lib/krb5/Makefile.lib
@@ -37,12 +35,11 @@ all := TARGET= all
clean := TARGET= clean
clobber := TARGET= clobber
install := TARGET= install
-lint := TARGET= lint
_msg := TARGET= _msg
.KEEP_STATE:
-all clean clobber lint _msg: $(SUBDIRS)
+all clean clobber _msg: $(SUBDIRS)
$(ROOTLIBDIR):
$(INS.dir)
diff --git a/usr/src/lib/krb5/plugins/kdb/db2/Makefile.com b/usr/src/lib/krb5/plugins/kdb/db2/Makefile.com
index 2715dee4aa..eaaa569dc2 100644
--- a/usr/src/lib/krb5/plugins/kdb/db2/Makefile.com
+++ b/usr/src/lib/krb5/plugins/kdb/db2/Makefile.com
@@ -37,7 +37,7 @@ DB2_OBJS= \
kdb_db2.o \
kdb_xdr.o \
pol_xdr.o
-
+
OBJECTS= $(DB2_OBJS)
# include library definitions
@@ -54,7 +54,7 @@ POFILES = generic.po
#override liblink
INS.liblink= -$(RM) $@; $(SYMLINK) $(LIBLINKS)$(VERS) $@
-CPPFLAGS += -DHAVE_CONFIG_H -DHAVE_BT_RSEQ \
+CPPFLAGS += -DHAVE_CONFIG_H -DHAVE_BT_RSEQ \
-I$(SRC)/cmd/krb5/iprop \
-I$(SRC)/lib/krb5 \
-I$(SRC)/lib/krb5/kdb \
@@ -80,7 +80,6 @@ LDLIBS += -L $(ROOTLIBDIR) -ldb2 -lkdb -lkadm5srv -lc -lnsl
all: $(LIBS)
-lint: lintcheck
# include library targets
include $(SRC)/lib/krb5/Makefile.targ
diff --git a/usr/src/lib/krb5/plugins/kdb/db2/libdb2/Makefile b/usr/src/lib/krb5/plugins/kdb/db2/libdb2/Makefile
index c30b49d724..4b0dbd8a70 100644
--- a/usr/src/lib/krb5/plugins/kdb/db2/libdb2/Makefile
+++ b/usr/src/lib/krb5/plugins/kdb/db2/libdb2/Makefile
@@ -22,8 +22,6 @@
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
-# ident "%Z%%M% %I% %E% SMI"
-#
include $(SRC)/lib/krb5/Makefile.lib
@@ -35,7 +33,6 @@ all := TARGET= all
clean := TARGET= clean
clobber := TARGET= clobber
install := TARGET= install
-lint := TARGET= lint
_msg := TARGET= _msg
README= README.db2
@@ -44,7 +41,7 @@ $(ROOTLIBDIR)/$(README) := FILEMODE= 444
.KEEP_STATE:
-all clean clobber lint _msg: $(SUBDIRS)
+all clean clobber _msg: $(SUBDIRS)
$(ROOTLIBDIR):
$(INS.dir)
diff --git a/usr/src/lib/krb5/plugins/kdb/db2/libdb2/Makefile.com b/usr/src/lib/krb5/plugins/kdb/db2/libdb2/Makefile.com
index 21245b1a0a..eff6cc3052 100644
--- a/usr/src/lib/krb5/plugins/kdb/db2/libdb2/Makefile.com
+++ b/usr/src/lib/krb5/plugins/kdb/db2/libdb2/Makefile.com
@@ -27,7 +27,7 @@
LIBRARY= libdb2.a
VERS= .1
-# btree
+# btree
BTREE_OBJS= \
bt_close.o \
bt_conv.o \
@@ -41,9 +41,9 @@ BTREE_OBJS= \
bt_search.o \
bt_seq.o \
bt_split.o \
- bt_utils.o
-
-# db
+ bt_utils.o
+
+# db
DB_OBJS= db.o
# hash
@@ -92,7 +92,7 @@ POFILES = generic.po
#override liblink
INS.liblink= -$(RM) $@; $(SYMLINK) $(LIBLINKS)$(VERS) $@
-CPPFLAGS += -DHAVE_CONFIG_H \
+CPPFLAGS += -DHAVE_CONFIG_H \
-I$(SRC)/lib/krb5/plugins/kdb/db2/libdb2/mpool \
-I$(SRC)/lib/krb5/plugins/kdb/db2/libdb2/db \
-I$(SRC)/lib/krb5/plugins/kdb/db2/libdb2/hash \
@@ -118,7 +118,6 @@ DYNFLAGS += $(ZINTERPOSE)
all: $(LIBS)
-lint: lintcheck
# include library targets
include $(SRC)/lib/krb5/Makefile.targ
diff --git a/usr/src/lib/krb5/plugins/kdb/ldap/Makefile b/usr/src/lib/krb5/plugins/kdb/ldap/Makefile
index e8f2cca368..219b4ba659 100644
--- a/usr/src/lib/krb5/plugins/kdb/ldap/Makefile
+++ b/usr/src/lib/krb5/plugins/kdb/ldap/Makefile
@@ -22,8 +22,6 @@
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
-# ident "%Z%%M% %I% %E% SMI"
-#
include $(SRC)/lib/krb5/Makefile.lib
@@ -35,12 +33,11 @@ all := TARGET= all
clean := TARGET= clean
clobber := TARGET= clobber
install := TARGET= install
-lint := TARGET= lint
_msg := TARGET= _msg
.KEEP_STATE:
-all clean clobber lint: $(SUBDIRS)
+all clean clobber: $(SUBDIRS)
# no messages in this current dir but there are in libkdb_ldap
_msg: libkdb_ldap
diff --git a/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/Makefile b/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/Makefile
index caf1946078..b109a1c1b4 100644
--- a/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/Makefile
+++ b/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/Makefile
@@ -22,8 +22,6 @@
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
-# ident "%Z%%M% %I% %E% SMI"
-#
include $(SRC)/lib/krb5/Makefile.lib
@@ -35,7 +33,6 @@ all := TARGET= all
clean := TARGET= clean
clobber := TARGET= clobber
install := TARGET= install
-lint := TARGET= lint
_msg := TARGET= _msg
LDIF= kerberos.ldif
@@ -45,7 +42,7 @@ $(ROOTLDIF) := FILEMODE= 444
.KEEP_STATE:
-all clean clobber lint _msg: $(SUBDIRS)
+all clean clobber _msg: $(SUBDIRS)
$(ROOTLIBDIR):
$(INS.dir)
diff --git a/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/Makefile.com b/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/Makefile.com
index a3751a8a9b..da239b2e3b 100644
--- a/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/Makefile.com
+++ b/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/Makefile.com
@@ -45,7 +45,7 @@ LIBKLDAP_OBJS= \
ldap_service_stash.o \
ldap_services.o \
ldap_tkt_policy.o \
- princ_xdr.o
+ princ_xdr.o
OBJECTS= $(LIBKLDAP_OBJS)
@@ -64,7 +64,7 @@ POFILES = generic.po
#override liblink
INS.liblink= -$(RM) $@; $(SYMLINK) $(LIBLINKS)$(VERS) $@
-CPPFLAGS += -DHAVE_CONFIG_H \
+CPPFLAGS += -DHAVE_CONFIG_H \
-I$(SRC)/lib/krb5 \
-I$(SRC)/lib/krb5/kdb \
-I$(SRC)/lib/gss_mechs/mech_krb5/include \
@@ -88,7 +88,6 @@ LDLIBS += -L $(ROOTLIBDIR) -lkadm5srv -lc -lnsl -lldap
all: $(LIBS)
-lint: lintcheck
# include library targets
include $(SRC)/lib/krb5/Makefile.targ
diff --git a/usr/src/lib/krb5/plugins/preauth/Makefile b/usr/src/lib/krb5/plugins/preauth/Makefile
index 884a2af6ff..7add481d7d 100644
--- a/usr/src/lib/krb5/plugins/preauth/Makefile
+++ b/usr/src/lib/krb5/plugins/preauth/Makefile
@@ -36,12 +36,11 @@ all := TARGET= all
install := TARGET= install
clean := TARGET= clean
clobber := TARGET= clobber
-lint := TARGET= lint
_msg := TARGET= _msg
.KEEP_STATE:
-all install clean clobber lint _msg: $(SUBDIRS)
+all install clean clobber _msg: $(SUBDIRS)
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
diff --git a/usr/src/lib/krb5/plugins/preauth/pkinit/Makefile b/usr/src/lib/krb5/plugins/preauth/pkinit/Makefile
index 84965753db..9cc69b1f11 100644
--- a/usr/src/lib/krb5/plugins/preauth/pkinit/Makefile
+++ b/usr/src/lib/krb5/plugins/preauth/pkinit/Makefile
@@ -34,12 +34,11 @@ all := TARGET= all
clean := TARGET= clean
clobber := TARGET= clobber
install := TARGET= install
-lint := TARGET= lint
_msg := TARGET= _msg
.KEEP_STATE:
-all clean clobber lint _msg: $(SUBDIRS)
+all clean clobber _msg: $(SUBDIRS)
$(ROOTLIBDIR):
$(INS.dir)
diff --git a/usr/src/lib/krb5/plugins/preauth/pkinit/Makefile.com b/usr/src/lib/krb5/plugins/preauth/pkinit/Makefile.com
index 99814777f1..1975547329 100644
--- a/usr/src/lib/krb5/plugins/preauth/pkinit/Makefile.com
+++ b/usr/src/lib/krb5/plugins/preauth/pkinit/Makefile.com
@@ -85,7 +85,6 @@ $(ROOTLIBDIR):
all: $(LIBS)
-lint: lintcheck
# include library targets
include $(SRC)/lib/krb5/Makefile.targ