Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.4 KB

File metadata and controls

34 lines (23 loc) · 1.4 KB

JNITasks - Ant Tasks for JNI Projects

Autoreconf Task

Use this task to update configuration files generated by GNU Autotools.

Parameters

Attribute Type Default Description
dir Dir ${basedir} Folder to execute the task in
force Boolean False Consider all files obsolete
install Boolean False Copy missing auxiliary files
quiet Boolean False Disable verbose output

Nested Elements

AutoreconfTask.Include extends CcTask.Include

Attribute Type Default Description
prepend Boolean False Use -B instead of the default -I

Example

	<autoreconf dir="${dir.src}" force="true" install="true">
		<include path="/opt/local/share/aclocal" prepend="true" if="native.os.isDarwin" />
	</autoreconf>