CVS commit: src/tools/tic

2020-04-05 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Sun Apr  5 12:31:39 UTC 2020

Modified Files:
src/tools/tic: Makefile

Log Message:
tools: Build tic with full fat terminfo


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tools/tic/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tools/tic/Makefile
diff -u src/tools/tic/Makefile:1.5 src/tools/tic/Makefile:1.6
--- src/tools/tic/Makefile:1.5	Wed Nov  2 17:49:20 2011
+++ src/tools/tic/Makefile	Sun Apr  5 12:31:39 2020
@@ -1,7 +1,10 @@
-#	$NetBSD: Makefile,v 1.5 2011/11/02 17:49:20 christos Exp $
+#	$NetBSD: Makefile,v 1.6 2020/04/05 12:31:39 roy Exp $
 
 HOSTPROGNAME=	${_TOOL_PREFIX}tic
 HOST_SRCDIR=	usr.bin/tic
+
+# We need our libterminfo to compile compat and write to the database
+CPPFLAGS+=	-DTERMINFO_COMPILE -DTERMINFO_COMPAT -DTERMINFO_DB
 HOST_SRCS=	compile.c hash.c
 
 TERMINFODIR=	${NETBSDSRCDIR}/lib/libterminfo



CVS commit: src/tools/tic

2020-04-05 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Sun Apr  5 12:31:39 UTC 2020

Modified Files:
src/tools/tic: Makefile

Log Message:
tools: Build tic with full fat terminfo


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tools/tic/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/tools/tic

2011-11-02 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Nov  2 17:49:20 UTC 2011

Modified Files:
src/tools/tic: Makefile

Log Message:
Handle auto-generating hash.c


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/tools/tic/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tools/tic/Makefile
diff -u src/tools/tic/Makefile:1.4 src/tools/tic/Makefile:1.5
--- src/tools/tic/Makefile:1.4	Mon Feb 22 18:05:39 2010
+++ src/tools/tic/Makefile	Wed Nov  2 13:49:20 2011
@@ -1,9 +1,12 @@
-#	$NetBSD: Makefile,v 1.4 2010/02/22 23:05:39 roy Exp $
+#	$NetBSD: Makefile,v 1.5 2011/11/02 17:49:20 christos Exp $
 
 HOSTPROGNAME=	${_TOOL_PREFIX}tic
 HOST_SRCDIR=	usr.bin/tic
 HOST_SRCS=	compile.c hash.c
 
+TERMINFODIR=	${NETBSDSRCDIR}/lib/libterminfo
+
 .include ${.CURDIR}/../Makefile.host
+.include ${TERMINFODIR}/Makefile.hash
 
-.PATH:		${NETBSDSRCDIR}/lib/libterminfo
+.PATH:		${TERMINFODIR}



CVS commit: src/tools/tic

2011-11-02 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Nov  2 17:49:20 UTC 2011

Modified Files:
src/tools/tic: Makefile

Log Message:
Handle auto-generating hash.c


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/tools/tic/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/tools/tic

2010-02-20 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Sat Feb 20 19:04:48 UTC 2010

Modified Files:
src/tools/tic: Makefile

Log Message:
Use HOST_SRCS instead of adding to SRCS for hash.c


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tools/tic/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/tools/tic

2010-02-20 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Sat Feb 20 17:02:33 UTC 2010

Modified Files:
src/tools/tic: Makefile

Log Message:
Use the pre-built hash table.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tools/tic/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tools/tic/Makefile
diff -u src/tools/tic/Makefile:1.1 src/tools/tic/Makefile:1.2
--- src/tools/tic/Makefile:1.1	Wed Feb  3 15:34:44 2010
+++ src/tools/tic/Makefile	Sat Feb 20 17:02:33 2010
@@ -1,17 +1,11 @@
-#	$NetBSD: Makefile,v 1.1 2010/02/03 15:34:44 roy Exp $
+#	$NetBSD: Makefile,v 1.2 2010/02/20 17:02:33 roy Exp $
 
 HOSTPROGNAME=	${_TOOL_PREFIX}tic
 HOST_SRCDIR=	usr.bin/tic
 
-
 .include ${.CURDIR}/../Makefile.host
 
 .PATH:		${NETBSDSRCDIR}/lib/libterminfo
 SRCS+=		hash.c
-CLEANFILES+=	hash.c
-tic:		hash.lo
 
-# Generate our string and hash tables
-hash.c:
-		@echo Generating terminfo hash
-		cd ${NETBSDSRCDIR}/lib/libterminfo; ./genhash ${.OBJDIR}/$@
+tic:		hash.lo



CVS commit: src/tools/tic

2010-02-20 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Sat Feb 20 19:04:48 UTC 2010

Modified Files:
src/tools/tic: Makefile

Log Message:
Use HOST_SRCS instead of adding to SRCS for hash.c


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tools/tic/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tools/tic/Makefile
diff -u src/tools/tic/Makefile:1.2 src/tools/tic/Makefile:1.3
--- src/tools/tic/Makefile:1.2	Sat Feb 20 17:02:33 2010
+++ src/tools/tic/Makefile	Sat Feb 20 19:04:48 2010
@@ -1,11 +1,9 @@
-#	$NetBSD: Makefile,v 1.2 2010/02/20 17:02:33 roy Exp $
+#	$NetBSD: Makefile,v 1.3 2010/02/20 19:04:48 roy Exp $
 
 HOSTPROGNAME=	${_TOOL_PREFIX}tic
 HOST_SRCDIR=	usr.bin/tic
+HOST_SRCS=	hash.c
 
 .include ${.CURDIR}/../Makefile.host
 
 .PATH:		${NETBSDSRCDIR}/lib/libterminfo
-SRCS+=		hash.c
-
-tic:		hash.lo