My project folders look like this
Makefile
/src
/flash
build.xml
/blabla
...
I wrote a Makefile like this
flash: src/flash/bin-debug/App.swf
src/flash/bin-debug/App.swf:
cd src/flash
ant
When I execute make flash
, I get the following message:
cd src/flash/
ant
Buildfile: build.xml does not exist!
Build failed
make: *** [src/flash/bin-debug/App.swf] Error 1
How can I execute ant
in src/flash