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/libsqlite | |
parent | 282d4a2d330d797757f16d55e1df9569f3e52d10 (diff) | |
download | illumos-joyent-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/libsqlite')
-rw-r--r-- | usr/src/lib/libsqlite/Makefile | 3 | ||||
-rw-r--r-- | usr/src/lib/libsqlite/Makefile.com | 8 | ||||
-rw-r--r-- | usr/src/lib/libsqlite/i386/Makefile | 2 | ||||
-rw-r--r-- | usr/src/lib/libsqlite/sparc/Makefile | 2 |
4 files changed, 4 insertions, 11 deletions
diff --git a/usr/src/lib/libsqlite/Makefile b/usr/src/lib/libsqlite/Makefile index 2d156094a3..a197a94394 100644 --- a/usr/src/lib/libsqlite/Makefile +++ b/usr/src/lib/libsqlite/Makefile @@ -27,14 +27,13 @@ all := TARGET= all clean := TARGET= clean clobber := TARGET= clobber install := TARGET= install -lint := TARGET= lint # This is the default Makefile target. The objects listed here # are what get build when you type just "make" with no arguments. # all install: sqlite.h $(SUBDIRS) -clobber lint: $(SUBDIRS) +clobber: $(SUBDIRS) $(ROOTHDRDIR): $(INS.dir) diff --git a/usr/src/lib/libsqlite/Makefile.com b/usr/src/lib/libsqlite/Makefile.com index 8dd20a4ce9..85beefbd37 100644 --- a/usr/src/lib/libsqlite/Makefile.com +++ b/usr/src/lib/libsqlite/Makefile.com @@ -53,9 +53,8 @@ include $(SRC)/lib/Makefile.rootfs SRCDIR = ../src TOOLDIR = ../tool $(DYNLIB) := LDLIBS += -lc -LIBS = $(DYNLIB) $(LINTLIB) $(NATIVERELOC) +LIBS = $(DYNLIB) $(NATIVERELOC) -$(LINTLIB) := SRCS = ../$(LINTSRC) # generated sources GENSRC = opcodes.c parse.c @@ -203,19 +202,14 @@ install: all \ $(ROOTLIBDIR)/$(DYNLIB) \ $(ROOTLIBDIR)/$(NATIVERELOC) -lint: all_h: $(GENHDR) $(ROOTLIBDIR)/$(NATIVERELOC) := FILEMODE= 644 -$(ROOTLINTDIR)/$(LINTLIB) := FILEMODE= 644 $(ROOTLINK): $(ROOTLIBDIR) $(ROOTLIBDIR)/$(DYNLIB) $(INS.liblink) -$(ROOTLINTDIR)/%: ../% - $(INS.file) - native: $(NATIVERELOC) $(NATIVERELOC): objs .WAIT $(OBJS:%.o=%-native.o) diff --git a/usr/src/lib/libsqlite/i386/Makefile b/usr/src/lib/libsqlite/i386/Makefile index c7cca61bea..4acb0bde30 100644 --- a/usr/src/lib/libsqlite/i386/Makefile +++ b/usr/src/lib/libsqlite/i386/Makefile @@ -25,4 +25,4 @@ include ../Makefile.com -install: all $(ROOTLIBS) $(ROOTLINKS) $(ROOTLINT) +install: all $(ROOTLIBS) $(ROOTLINKS) diff --git a/usr/src/lib/libsqlite/sparc/Makefile b/usr/src/lib/libsqlite/sparc/Makefile index c7cca61bea..4acb0bde30 100644 --- a/usr/src/lib/libsqlite/sparc/Makefile +++ b/usr/src/lib/libsqlite/sparc/Makefile @@ -25,4 +25,4 @@ include ../Makefile.com -install: all $(ROOTLIBS) $(ROOTLINKS) $(ROOTLINT) +install: all $(ROOTLIBS) $(ROOTLINKS) |