summaryrefslogtreecommitdiff
path: root/usr/src/lib/libxcurses2
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/lib/libxcurses2')
-rw-r--r--usr/src/lib/libxcurses2/Makefile5
-rw-r--r--usr/src/lib/libxcurses2/Makefile.com15
-rw-r--r--usr/src/lib/libxcurses2/amd64/Makefile4
-rw-r--r--usr/src/lib/libxcurses2/i386/Makefile6
-rw-r--r--usr/src/lib/libxcurses2/sparc/Makefile6
-rw-r--r--usr/src/lib/libxcurses2/sparcv9/Makefile4
6 files changed, 8 insertions, 32 deletions
diff --git a/usr/src/lib/libxcurses2/Makefile b/usr/src/lib/libxcurses2/Makefile
index d99a9628c8..c4d4031642 100644
--- a/usr/src/lib/libxcurses2/Makefile
+++ b/usr/src/lib/libxcurses2/Makefile
@@ -33,7 +33,6 @@ all := TARGET= all
install := TARGET= install
clean := TARGET= clean
clobber := TARGET= clobber
-lint := TARGET= lint
# capability NAMES generated source
NAMES= \
@@ -60,7 +59,7 @@ CLOBBERFILES= $(GENERATED)
.KEEP_STATE:
-LIBS= $(DYNLIB) $(LINTLIB)
+LIBS= $(DYNLIB)
all: $(GENERATED) .WAIT $(SUBDIRS)
@@ -69,8 +68,6 @@ install: all .WAIT $(SUBDIRS)
clean clobber: $(SUBDIRS)
$(RM) $(GENERATED)
-lint: $(SUBDIRS)
-
# still need to implement cstyle check of term.h
# do this when we go through and make this library cstyle clean.
check: $(HDRS)
diff --git a/usr/src/lib/libxcurses2/Makefile.com b/usr/src/lib/libxcurses2/Makefile.com
index 12a063c414..2d5497c37d 100644
--- a/usr/src/lib/libxcurses2/Makefile.com
+++ b/usr/src/lib/libxcurses2/Makefile.com
@@ -83,17 +83,13 @@ SRCS= $(XCURSES:%.o=../src/libc/xcurses/%.c) \
$(MKS:%.o=../src/libc/mks/%.c) \
$(WIDE:%.o=../src/libc/wide/%.c)
-LIBS = $(DYNLIB) $(LINTLIB)
+LIBS = $(DYNLIB)
# definitions for install target
ROOTLIBDIR= $(ROOT)/usr/xpg4/lib
ROOTLIBDIR64= $(ROOT)/usr/xpg4/lib/$(MACH64)
ROOTLIBS= $(LIBS:%=$(ROOTLIBDIR)/%)
-$(LINTLIB):= SRCS=../src/libc/llib-lcurses
-
-LINTSRC= $(LINTLIB:%.ln=%)
-
LDLIBS += -lc
CPPFLAGS = -I../h -I../src/libc/xcurses $(CPPFLAGS.master)
@@ -113,7 +109,6 @@ CLOBBERFILES= libcurses.so libcurses.so$(VERS)
all: $(LIBS)
-lint: lintcheck
#
# Include library targets
@@ -131,11 +126,3 @@ objs/%.o pics/%.o: ../src/libc/mks/%.c
objs/%.o pics/%.o: ../src/libc/wide/%.c
$(COMPILE.c) -o $@ $<
$(POST_PROCESS_O)
-
-# install rule for lint library target
-$(ROOTLINTDIR)/%: ../src/libc/%
- $(INS.file)
-
-# install rule for 64 bit lint library target
-$(ROOTLINTDIR64)/%: ../src/libc/%
- $(INS.file)
diff --git a/usr/src/lib/libxcurses2/amd64/Makefile b/usr/src/lib/libxcurses2/amd64/Makefile
index 80a8e6fcb2..83ef5cbc13 100644
--- a/usr/src/lib/libxcurses2/amd64/Makefile
+++ b/usr/src/lib/libxcurses2/amd64/Makefile
@@ -22,8 +22,6 @@
# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
-# ident "%Z%%M% %I% %E% SMI"
-#
include ../Makefile.com
include ../../Makefile.lib.64
@@ -32,4 +30,4 @@ include ../../Makefile.lib.64
all: $(LIBS)
-install: all $(ROOTLIBS64) $(ROOTLINKS64) $(ROOTLINT64)
+install: all $(ROOTLIBS64) $(ROOTLINKS64)
diff --git a/usr/src/lib/libxcurses2/i386/Makefile b/usr/src/lib/libxcurses2/i386/Makefile
index 4351f4cf5f..93f4c54e6a 100644
--- a/usr/src/lib/libxcurses2/i386/Makefile
+++ b/usr/src/lib/libxcurses2/i386/Makefile
@@ -22,8 +22,6 @@
# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
-# ident "%Z%%M% %I% %E% SMI"
-#
include ../Makefile.com
@@ -31,6 +29,6 @@ DYNFLAGS += $(DYNFLAGS32)
.KEEP_STATE:
-all: $(LIBS)
+all: $(LIBS)
-install: all $(ROOTLIBS) $(ROOTLINKS) $(ROOTLINT)
+install: all $(ROOTLIBS) $(ROOTLINKS)
diff --git a/usr/src/lib/libxcurses2/sparc/Makefile b/usr/src/lib/libxcurses2/sparc/Makefile
index 14b8ae0ed1..d6eed917a9 100644
--- a/usr/src/lib/libxcurses2/sparc/Makefile
+++ b/usr/src/lib/libxcurses2/sparc/Makefile
@@ -22,13 +22,11 @@
# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
-# ident "%Z%%M% %I% %E% SMI"
-#
include ../Makefile.com
.KEEP_STATE:
-all: $(LIBS)
+all: $(LIBS)
-install: all $(ROOTLIBS) $(ROOTLINKS) $(ROOTLINT)
+install: all $(ROOTLIBS) $(ROOTLINKS)
diff --git a/usr/src/lib/libxcurses2/sparcv9/Makefile b/usr/src/lib/libxcurses2/sparcv9/Makefile
index 80a8e6fcb2..83ef5cbc13 100644
--- a/usr/src/lib/libxcurses2/sparcv9/Makefile
+++ b/usr/src/lib/libxcurses2/sparcv9/Makefile
@@ -22,8 +22,6 @@
# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
-# ident "%Z%%M% %I% %E% SMI"
-#
include ../Makefile.com
include ../../Makefile.lib.64
@@ -32,4 +30,4 @@ include ../../Makefile.lib.64
all: $(LIBS)
-install: all $(ROOTLIBS64) $(ROOTLINKS64) $(ROOTLINT64)
+install: all $(ROOTLIBS64) $(ROOTLINKS64)