You can create a module in master ant file which contains corresponding ant files. For eg:
You can make a master file as
> /opt/Makefile
all:
(make module1)
(make module2)
module1:
(cd myApp/module1/; ant -f patch.xml)
module2:
(cd myApp2/module2; ant -buildfile build.xml)
Then you can run the master Makefile as:
> `$ make Makefile all`