diff options
-rw-r--r-- | usr.bin/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 3f8372e..1a61881 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -10,10 +10,6 @@ .if ${MACHINE_ARCH} != "ia64" .if !defined(NO_TOOLCHAIN) _xlint= xlint -_lex= lex -_yacc= yacc -_c89= c89 -_c99= c99 .endif .endif @@ -24,6 +20,13 @@ _gprof= gprof _truss= truss .endif +.if !defined(NO_TOOLCHAIN) +_c89= c89 +_c99= c99 +_lex= lex +_yacc= yacc +.endif + SUBDIR= alias \ apply \ asa \ |