source: other-projects/rsyntax-textarea/src/REGENERATE-FLEX.sh@ 25584

Last change on this file since 25584 was 25584, checked in by davidb, 12 years ago

Initial cut an a text edit area for GLI that supports color syntax highlighting

File size: 256 bytes
Line 
1#!/bin/bash
2
3pushd java/org/fife/ui/rsyntaxtextarea/modes/
4
5
6for f in *.flex ; do
7 echo "Checking $f ..."
8 if [ $f -nt ${f%.*}.java ] ; then
9 jflex $f
10 echo "... regenerated"
11 else
12 echo "... does not need to be regenerated"
13 fi
14
15
16done
17
18popd
Note: See TracBrowser for help on using the repository browser.