[BACK]Return to sys.mk CVS log [TXT][DIR] Up to [local] / src / share / mk

Diff for /src/share/mk/sys.mk between version 1.77 and 1.78

version 1.77, 2017/03/04 16:52:47 version 1.78, 2017/07/01 14:41:54
Line 195 
Line 195 
         ${LEX.l} ${.IMPSRC}          ${LEX.l} ${.IMPSRC}
         ${COMPILE.c} -o ${.TARGET} lex.yy.c          ${COMPILE.c} -o ${.TARGET} lex.yy.c
         rm -f lex.yy.c          rm -f lex.yy.c
           if test -f ${.TARGET:R}.d; then sed -i -e 's,lex.yy.c,${.IMPSRC},' ${.TARGET:R}.d; fi
   
 # Yacc  # Yacc
 .y:  .y:
Line 208 
Line 209 
         ${YACC.y} ${.IMPSRC}          ${YACC.y} ${.IMPSRC}
         ${COMPILE.c} -o ${.TARGET} y.tab.c          ${COMPILE.c} -o ${.TARGET} y.tab.c
         rm -f y.tab.c          rm -f y.tab.c
           if test -f ${.TARGET:R}.d; then sed -i -e 's,y.tab.c,${.IMPSRC},' ${.TARGET:R}.d; fi
   
 # Shell  # Shell
 .sh:  .sh:

Legend:
Removed from v.1.77  
changed lines
  Added in v.1.78