The BSDs all have lex, tbl, and yacc in the base system.
This commit is contained in:
parent
e75fadb138
commit
5ac75286c8
4 changed files with 20 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: tools.DragonFly.mk,v 1.1 2005/04/27 15:28:16 jlam Exp $
|
||||
# $NetBSD: tools.DragonFly.mk,v 1.2 2005/04/27 15:59:25 jlam Exp $
|
||||
#
|
||||
# System-supplied tools for the DragonFly operating system.
|
||||
|
||||
|
@ -29,6 +29,7 @@ PLATFORM_TOOL.gzip?= /usr/bin/gzip -nf ${GZIP}
|
|||
PLATFORM_TOOL.head?= /usr/bin/head
|
||||
PLATFORM_TOOL.hostname?= /bin/hostname
|
||||
PLATFORM_TOOL.id?= /usr/bin/id
|
||||
PLATFORM_TOOL.lex?= /usr/bin/lex
|
||||
PLATFORM_TOOL.ln?= /bin/ln
|
||||
PLATFORM_TOOL.ls?= /bin/ls
|
||||
PLATFORM_TOOL.m4?= /usr/bin/m4
|
||||
|
@ -46,6 +47,7 @@ PLATFORM_TOOL.sh?= /bin/sh
|
|||
PLATFORM_TOOL.shlock?= /usr/bin/shlock
|
||||
PLATFORM_TOOL.sort?= /usr/bin/sort
|
||||
PLATFORM_TOOL.tail?= /usr/bin/tail
|
||||
PLATFORM_TOOL.tbl?= /usr/bin/tbl
|
||||
PLATFORM_TOOL.tee?= /usr/bin/tee
|
||||
PLATFORM_TOOL.test?= /bin/test
|
||||
PLATFORM_TOOL.touch?= /usr/bin/touch
|
||||
|
@ -54,3 +56,4 @@ PLATFORM_TOOL.true?= /usr/bin/true
|
|||
PLATFORM_TOOL.tsort?= /usr/bin/tsort
|
||||
PLATFORM_TOOL.wc?= /usr/bin/wc
|
||||
PLATFORM_TOOL.xargs?= /usr/bin/xargs
|
||||
PLATFORM_TOOL.yacc?= /usr/bin/yacc
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: tools.FreeBSD.mk,v 1.1 2005/04/27 15:28:16 jlam Exp $
|
||||
# $NetBSD: tools.FreeBSD.mk,v 1.2 2005/04/27 15:59:25 jlam Exp $
|
||||
#
|
||||
# System-supplied tools for the FreeBSD operating system.
|
||||
|
||||
|
@ -29,6 +29,7 @@ PLATFORM_TOOL.gzip?= /usr/bin/gzip -nf ${GZIP}
|
|||
PLATFORM_TOOL.head?= /usr/bin/head
|
||||
PLATFORM_TOOL.hostname?= /bin/hostname
|
||||
PLATFORM_TOOL.id?= /usr/bin/id
|
||||
PLATFORM_TOOL.lex?= /usr/bin/lex
|
||||
PLATFORM_TOOL.ln?= /bin/ln
|
||||
PLATFORM_TOOL.ls?= /bin/ls
|
||||
PLATFORM_TOOL.m4?= /usr/bin/m4
|
||||
|
@ -46,6 +47,7 @@ PLATFORM_TOOL.sh?= /bin/sh
|
|||
PLATFORM_TOOL.shlock?= /usr/bin/shlock
|
||||
PLATFORM_TOOL.sort?= /usr/bin/sort
|
||||
PLATFORM_TOOL.tail?= /usr/bin/tail
|
||||
PLATFORM_TOOL.tbl?= /usr/bin/tbl
|
||||
PLATFORM_TOOL.tee?= /usr/bin/tee
|
||||
PLATFORM_TOOL.test?= test # shell builtin
|
||||
PLATFORM_TOOL.touch?= /usr/bin/touch
|
||||
|
@ -54,3 +56,4 @@ PLATFORM_TOOL.true?= true # shell builtin
|
|||
PLATFORM_TOOL.tsort?= /usr/bin/tsort
|
||||
PLATFORM_TOOL.wc?= /usr/bin/wc
|
||||
PLATFORM_TOOL.xargs?= /usr/bin/xargs
|
||||
PLATFORM_TOOL.yacc?= /usr/bin/yacc
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: tools.NetBSD.mk,v 1.1 2005/04/27 15:28:16 jlam Exp $
|
||||
# $NetBSD: tools.NetBSD.mk,v 1.2 2005/04/27 15:59:25 jlam Exp $
|
||||
#
|
||||
# System-supplied tools for the NetBSD operating system.
|
||||
|
||||
|
@ -21,7 +21,11 @@ PLATFORM_TOOL.false?= false # shell builtin
|
|||
PLATFORM_TOOL.fgrep?= /usr/bin/fgrep
|
||||
PLATFORM_TOOL.file?= /usr/bin/file
|
||||
PLATFORM_TOOL.find?= /usr/bin/find
|
||||
.if !empty(MACHINE_PLATFORM:MNetBSD-1.[0-6]*-*)
|
||||
PLATFORM_TOOL.gawk?= ${PLATFORM_TOOL.awk}
|
||||
.endif
|
||||
PLATFORM_TOOL.grep?= /usr/bin/grep
|
||||
PLATFORM_TOOL.gsed?= ${PLATFORM_TOOL.sed} # GNUish
|
||||
.if exists(/bin/tar)
|
||||
PLATFORM_TOOL.gtar?= /bin/tar
|
||||
.elif exists(/usr/bin/tar)
|
||||
|
@ -33,6 +37,7 @@ PLATFORM_TOOL.gzip?= /usr/bin/gzip -nf ${GZIP}
|
|||
PLATFORM_TOOL.head?= /usr/bin/head
|
||||
PLATFORM_TOOL.hostname?= /bin/hostname
|
||||
PLATFORM_TOOL.id?= /usr/bin/id
|
||||
PLATFORM_TOOL.lex?= /usr/bin/lex
|
||||
PLATFORM_TOOL.ln?= /bin/ln
|
||||
PLATFORM_TOOL.ls?= /bin/ls
|
||||
PLATFORM_TOOL.m4?= /usr/bin/m4
|
||||
|
@ -50,6 +55,7 @@ PLATFORM_TOOL.sh?= /bin/sh
|
|||
PLATFORM_TOOL.shlock?= /usr/bin/shlock
|
||||
PLATFORM_TOOL.sort?= /usr/bin/sort
|
||||
PLATFORM_TOOL.tail?= /usr/bin/tail
|
||||
PLATFORM_TOOL.tbl?= /usr/bin/tbl
|
||||
PLATFORM_TOOL.tee?= /usr/bin/tee
|
||||
PLATFORM_TOOL.test?= test # shell builtin
|
||||
PLATFORM_TOOL.touch?= /usr/bin/touch
|
||||
|
@ -58,3 +64,4 @@ PLATFORM_TOOL.true?= true # shell builtin
|
|||
PLATFORM_TOOL.tsort?= /usr/bin/tsort
|
||||
PLATFORM_TOOL.wc?= /usr/bin/wc
|
||||
PLATFORM_TOOL.xargs?= /usr/bin/xargs
|
||||
PLATFORM_TOOL.yacc?= /usr/bin/yacc
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: tools.OpenBSD.mk,v 1.1 2005/04/27 15:28:16 jlam Exp $
|
||||
# $NetBSD: tools.OpenBSD.mk,v 1.2 2005/04/27 15:59:25 jlam Exp $
|
||||
#
|
||||
# System-supplied tools for the OpenBSD operating system.
|
||||
|
||||
|
@ -33,6 +33,7 @@ PLATFORM_TOOL.gzip?= /usr/bin/gzip -nf ${GZIP}
|
|||
PLATFORM_TOOL.head?= /usr/bin/head
|
||||
PLATFORM_TOOL.hostname?= /bin/hostname
|
||||
PLATFORM_TOOL.id?= /usr/bin/id
|
||||
PLATFORM_TOOL.lex?= /usr/bin/lex
|
||||
PLATFORM_TOOL.ln?= /bin/ln
|
||||
PLATFORM_TOOL.ls?= /bin/ls
|
||||
PLATFORM_TOOL.m4?= /usr/bin/m4
|
||||
|
@ -48,6 +49,7 @@ PLATFORM_TOOL.sed?= /usr/bin/sed
|
|||
PLATFORM_TOOL.sh?= /bin/sh
|
||||
PLATFORM_TOOL.sort?= /usr/bin/sort
|
||||
PLATFORM_TOOL.tail?= /usr/bin/tail
|
||||
PLATFORM_TOOL.tbl?= /usr/bin/tbl
|
||||
PLATFORM_TOOL.tee?= /usr/bin/tee
|
||||
PLATFORM_TOOL.test?= test # shell builtin
|
||||
PLATFORM_TOOL.touch?= /usr/bin/touch
|
||||
|
@ -56,3 +58,4 @@ PLATFORM_TOOL.true?= true # shell builtin
|
|||
PLATFORM_TOOL.tsort?= /usr/bin/tsort
|
||||
PLATFORM_TOOL.wc?= /usr/bin/wc
|
||||
PLATFORM_TOOL.xargs?= /usr/bin/xargs
|
||||
PLATFORM_TOOL.yacc?= /usr/bin/yacc
|
||||
|
|
Loading…
Reference in a new issue