[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / lex

Diff for /src/usr.bin/lex/Makefile between version 1.14 and 1.15

version 1.14, 2015/11/19 23:46:55 version 1.15, 2015/11/20 18:57:18
Line 18 
Line 18 
           scanopt.c skel.c sym.c tables.c tables_shared.c \            scanopt.c skel.c sym.c tables.c tables_shared.c \
           tblcmp.c yylex.c            tblcmp.c yylex.c
   
 CLEANFILES+=skel.c parse.h  CLEANFILES+=skel.c parse.c parse.h
 LDADD+=-lm  LDADD+=-lm
   
 MAN = flex.1  MAN = flex.1
Line 29 
Line 29 
   
 VERSION="2.5.39"  VERSION="2.5.39"
   
 # Our yacc is too old to compile parse.y; use bootstrapped parse.c instead  parse.h parse.c: parse.y
 parse.h parse.c: parse.y initparse.c initparse.h          yacc -d -o parse.c ${.CURDIR}/parse.y
         cp ${.CURDIR}/initparse.c parse.c  
         cp ${.CURDIR}/initparse.h parse.h  
   
 skel.c: flex.skl mkskel.sh flexint.h tables_shared.h  skel.c: flex.skl mkskel.sh flexint.h tables_shared.h
         sed -e 's/m4_/m4postproc_/g' -e 's/m4preproc_/m4_/g' \          sed -e 's/m4_/m4postproc_/g' -e 's/m4preproc_/m4_/g' \

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15