copy $(srcdir)/lex.c if gperf failed and $@ is not exist.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13881 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2007-11-11 10:33:33 +00:00
Родитель 7687666c45
Коммит ae7a85f549
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -174,7 +174,11 @@ lex.c: keywords
( cp $(srcdir)/lex.c $@ && echo $@ copied. ) \ ( cp $(srcdir)/lex.c $@ && echo $@ copied. ) \
else \ else \
( gperf --output-file=$@.tmp -C -p -j1 -i 1 -g -o -t -N rb_reserved_word -k1,3,$$ $? && cp $@.tmp $@ ) || \ ( gperf --output-file=$@.tmp -C -p -j1 -i 1 -g -o -t -N rb_reserved_word -k1,3,$$ $? && cp $@.tmp $@ ) || \
( test -f $@ && touch $@ && echo $@ touched after gperf fail. ) \ if test -f $@; then \
( touch $@ && echo $@ touched after gperf fail. ) \
else \
( cp $(srcdir)/lex.c $@ && echo $@ copied after gperf fail. ) \
fi \
fi fi
.y.c: .y.c: