source: other-projects/gli-rsyntax-textarea/REGENERATE-FLEX.sh@ 25680

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

Relocated to top-level

File size: 260 bytes
Line 
1#!/bin/bash
2
3pushd src/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.