xref: /illumos-gate/usr/src/data/terminfo/Makefile (revision 503609a9)
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
41include		$(SRC)/data/Makefile.data
42
43FILEMODE=	0644
44
45ROOTTABDIR=	$(ROOTSHLIB)/tabset
46ROOTTERMDIR=	$(ROOTSHLIB)/terminfo
47DIRS=		$(ROOTTERMDIR) $(ROOTTABDIR)
48
49ROOTSYMLINK=	$(ROOTETC)/termcap
50RELROOTETC=	../usr/share/lib
51ROOTLIBSYMLINK=	$(ROOTLIB)/tabset
52RELROOTLIB=	../share/lib
53
54ROOTTABSET=	$(TABSETSRC:%=$(ROOTTABDIR)/%)
55
56$(ROOTTABDIR)/%: tabset/%
57		$(INS.file)
58
59.KEEP_STATE:
60
61all:		$(TERMCAPSRC) $(TERMINFOSRC)
62
63$(DIRS):
64		$(INS.dir)
65
66$(ROOTTERMDIR)/s/sun: $(TERMINFOSRC)
67		TERMINFO=$(ROOTTERMDIR) $(TIC) $(TERMINFOSRC) 2>/dev/null
68
69$(ROOTSHLIB)/termcap:
70		$(EGREP) -v '^(#|$$)' $(TERMCAPSRC) > $@
71
72install:	all $(ROOTTERMDIR) $(ROOTTERMDIR)/s/sun $(ROOTTABDIR) \
73		$(ROOTTABSET) $(ROOTSHLIB)/termcap  $(ROOTSYMLINK) \
74		$(ROOTLIBSYMLINK)
75
76$(ROOTSYMLINK):
77		$(RM) $@; $(SYMLINK) $(RELROOTETC)/termcap $@
78
79$(ROOTLIBSYMLINK):
80		$(RM) $@; $(SYMLINK) $(RELROOTLIB)/tabset $@
81
82clean clobber:
83