xref: /illumos-gate/usr/src/data/terminfo/Makefile (revision 90ffcda9)
1#
2# CDDL HEADER START
3#
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.
7#
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.
12#
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]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25# Copyright 2017 Nexenta Systems, Inc.
26#
27
28TABSETSRC=	3101 \
29		beehive \
30		hds \
31		hds3 \
32		std \
33		stdcrt \
34		teleray \
35		vt100 \
36		wyse-adds \
37		xerox1720
38TERMCAPSRC=	termcap.src
39TERMINFOSRC=	terminfo.src
40
41#
42# These represent the target termcap entries that we build from extra
43# termcap and terminfo data. See extras/README.
44#
45EXTRATERM=	rxvt-unicode
46EXTRATC=	$(EXTRATERM:%=extras/%.termcap)
47EXTRATI=	r/rxvt-unicode
48
49include		$(SRC)/data/Makefile.data
50
51FILEMODE=	0644
52
53ROOTTABDIR=	$(ROOTSHLIB)/tabset
54ROOTTERMDIR=	$(ROOTSHLIB)/terminfo
55DIRS=		$(ROOTTERMDIR) $(ROOTTABDIR)
56
57ROOTSYMLINK=	$(ROOTETC)/termcap
58RELROOTETC=	../usr/share/lib
59ROOTLIBSYMLINK=	$(ROOTLIB)/tabset
60RELROOTLIB=	../share/lib
61
62ROOTTABSET=	$(TABSETSRC:%=$(ROOTTABDIR)/%)
63
64ROOTEXTRATI=	$(EXTRATI:%=$(ROOTTERMDIR)/%)
65
66$(ROOTTABDIR)/%: tabset/%
67		$(INS.file)
68
69.KEEP_STATE:
70
71all:		$(TERMCAPSRC) $(TERMINFOSRC)
72
73$(DIRS):
74		$(INS.dir)
75
76$(ROOTTERMDIR)/s/sun: $(TERMINFOSRC)
77		TERMINFO=$(ROOTTERMDIR) $(TIC) $(TERMINFOSRC) 2>/dev/null
78
79$(ROOTSHLIB)/termcap: $(TERMCAPSRC) $(EXTRATC)
80		echo $(EXTRATERM) $(EXTRATC)
81		$(EGREP) -hv '^(#|$$)' $(TERMCAPSRC) $(EXTRATC) > $@
82
83install:	all $(ROOTTERMDIR) $(ROOTTERMDIR)/s/sun $(ROOTTABDIR) \
84		$(ROOTTABSET) $(ROOTSHLIB)/termcap  $(ROOTSYMLINK) \
85		$(ROOTLIBSYMLINK) $(ROOTEXTRATI)
86
87$(ROOTSYMLINK):
88		$(RM) $@; $(SYMLINK) $(RELROOTETC)/termcap $@
89
90$(ROOTLIBSYMLINK):
91		$(RM) $@; $(SYMLINK) $(RELROOTLIB)/tabset $@
92
93$(ROOTTERMDIR)/r/%: extras/%.terminfo
94		TERMINFO=$(ROOTTERMDIR) $(TIC) $< 2>/dev/null
95
96clean clobber:
97