I have a Java project that uses some autogenerated source code. This source code is generated using the command line tool --- Bison, in fact --- from a special source file.
I would like the Java source to recover automatically when needed, when I click the "build" button in Eclipse. Is this possible, and if so, how?
Normally I would integrate this into the projectβs makefile, but of course itβs Java and it doesnβt use makefiles. I looked at ant, but ant seems pretty hostile to traditional command line tools. I know that this is possible with the built-in developer Eclipse, because the Android developer kit does this; so what is he doing
David Given
source share