diff options
author | Richard Lowe <richlowe@richlowe.net> | 2020-03-26 21:07:34 -0400 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2020-05-04 16:57:13 -0400 |
commit | 241c90a06e8d1708235651863df515a2d522a03a (patch) | |
tree | c2d53e1063e09d626cfc0c9cc0c80f51256e7363 /usr/src/lib/libfcoe | |
parent | 282d4a2d330d797757f16d55e1df9569f3e52d10 (diff) | |
download | illumos-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/libfcoe')
-rw-r--r-- | usr/src/lib/libfcoe/Makefile | 3 | ||||
-rw-r--r-- | usr/src/lib/libfcoe/Makefile.com | 6 | ||||
-rw-r--r-- | usr/src/lib/libfcoe/amd64/Makefile | 2 | ||||
-rw-r--r-- | usr/src/lib/libfcoe/i386/Makefile | 2 | ||||
-rw-r--r-- | usr/src/lib/libfcoe/sparc/Makefile | 2 | ||||
-rw-r--r-- | usr/src/lib/libfcoe/sparcv9/Makefile | 2 |
6 files changed, 6 insertions, 11 deletions
diff --git a/usr/src/lib/libfcoe/Makefile b/usr/src/lib/libfcoe/Makefile index e9b7036a1f..aaaf3fcb14 100644 --- a/usr/src/lib/libfcoe/Makefile +++ b/usr/src/lib/libfcoe/Makefile @@ -33,7 +33,6 @@ clean := TARGET= clean clobber := TARGET= clobber install := TARGET= install install_h := TARGET= install_h -lint := TARGET= lint HDRS= libfcoe.h @@ -41,7 +40,7 @@ HDRDIR= common .KEEP_STATE: -all clean clobber install lint: $(SUBDIRS) +all clean clobber install: $(SUBDIRS) install_h: $(ROOTHDRS) diff --git a/usr/src/lib/libfcoe/Makefile.com b/usr/src/lib/libfcoe/Makefile.com index e3daeefd56..8a92c043ba 100644 --- a/usr/src/lib/libfcoe/Makefile.com +++ b/usr/src/lib/libfcoe/Makefile.com @@ -30,7 +30,7 @@ OBJECTS= libfcoe.o include ../../Makefile.lib -LIBS= $(DYNLIB) $(LINTLIB) +LIBS= $(DYNLIB) SRCDIR = ../common @@ -39,15 +39,11 @@ INCS += -I$(SRC)/uts/common/sys/fcoe LDLIBS += -lc -ldladm -lscf CSTD= $(CSTD_GNU99) -C99LMODE= -Xc99=%all CPPFLAGS += $(INCS) -D_REENTRANT -$(LINTLIB) := SRCS= $(SRCDIR)/$(LINTSRC) - .KEEP_STATE: all: $(LIBS) -lint: lintcheck include ../../Makefile.targ diff --git a/usr/src/lib/libfcoe/amd64/Makefile b/usr/src/lib/libfcoe/amd64/Makefile index 9e8a127855..31e46b8598 100644 --- a/usr/src/lib/libfcoe/amd64/Makefile +++ b/usr/src/lib/libfcoe/amd64/Makefile @@ -29,4 +29,4 @@ include ../../Makefile.lib.64 all: $(LIBS) -install: all $(ROOTLIBS64) $(ROOTLINKS64) $(ROOTLINT) +install: all $(ROOTLIBS64) $(ROOTLINKS64) diff --git a/usr/src/lib/libfcoe/i386/Makefile b/usr/src/lib/libfcoe/i386/Makefile index 433a471ad6..405dd73bf3 100644 --- a/usr/src/lib/libfcoe/i386/Makefile +++ b/usr/src/lib/libfcoe/i386/Makefile @@ -28,4 +28,4 @@ include ../Makefile.com all: $(LIBS) -install: all $(ROOTLIBS) $(ROOTLINKS) $(ROOTLINT) +install: all $(ROOTLIBS) $(ROOTLINKS) diff --git a/usr/src/lib/libfcoe/sparc/Makefile b/usr/src/lib/libfcoe/sparc/Makefile index 948a3578b3..08e81f8fe9 100644 --- a/usr/src/lib/libfcoe/sparc/Makefile +++ b/usr/src/lib/libfcoe/sparc/Makefile @@ -26,4 +26,4 @@ include ../Makefile.com all: $(LIBS) -install: all $(ROOTLIBS) $(ROOTLINKS) $(ROOTLINT) +install: all $(ROOTLIBS) $(ROOTLINKS) diff --git a/usr/src/lib/libfcoe/sparcv9/Makefile b/usr/src/lib/libfcoe/sparcv9/Makefile index 3f8aa611ca..616f93b07c 100644 --- a/usr/src/lib/libfcoe/sparcv9/Makefile +++ b/usr/src/lib/libfcoe/sparcv9/Makefile @@ -27,7 +27,7 @@ include ../Makefile.com include ../../Makefile.lib.64 -LIBS = $(DYNLIB) $(LINTLIB) +LIBS = $(DYNLIB) all: $(LIBS) |