|
Lines 324-344
Link Here
|
| 324 |
# |
324 |
# |
| 325 |
# Part of the configure set - run appropriate programs prior to |
325 |
# Part of the configure set - run appropriate programs prior to |
| 326 |
# the actual configure target if autotools are in use |
326 |
# the actual configure target if autotools are in use |
|
|
327 |
# If needed, this target could then be overridden, for example to |
| 328 |
# change the order of aclocal / patch-autotools. |
| 327 |
# |
329 |
# |
| 328 |
.if !target(run-autotools) |
330 |
.if !target(run-autotools) |
| 329 |
run-autotools: |
331 |
run-autotools:: run-autotools-aclocal run-autotools-automake run-autotools-autoconf run-autotools-autoheader |
|
|
332 |
.endif |
| 333 |
|
| 334 |
.if !target(run-autotools-aclocal) |
| 335 |
run-autotools-aclocal: |
| 330 |
. if defined(AUTOTOOL_aclocal) |
336 |
. if defined(AUTOTOOL_aclocal) |
| 331 |
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${ACLOCAL} \ |
337 |
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${ACLOCAL} \ |
| 332 |
${ACLOCAL_ARGS}) |
338 |
${ACLOCAL_ARGS}) |
| 333 |
. endif |
339 |
. endif |
|
|
340 |
.endif |
| 341 |
|
| 342 |
.if !target(run-autotools-automake) |
| 343 |
run-autotools-automake: |
| 334 |
. if defined(AUTOTOOL_automake) |
344 |
. if defined(AUTOTOOL_automake) |
| 335 |
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOMAKE} \ |
345 |
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOMAKE} \ |
| 336 |
${AUTOMAKE_ARGS}) |
346 |
${AUTOMAKE_ARGS}) |
| 337 |
. endif |
347 |
. endif |
|
|
348 |
.endif |
| 349 |
|
| 350 |
.if !target(run-autotools-autoconf) |
| 351 |
run-autotools-autoconf: |
| 338 |
. if defined(AUTOTOOL_autoconf) |
352 |
. if defined(AUTOTOOL_autoconf) |
| 339 |
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOCONF} \ |
353 |
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOCONF} \ |
| 340 |
${AUTOCONF_ARGS}) |
354 |
${AUTOCONF_ARGS}) |
| 341 |
. endif |
355 |
. endif |
|
|
356 |
.endif |
| 357 |
|
| 358 |
.if !target(run-autotools-autoheader) |
| 359 |
run-autotools-autoheader: |
| 342 |
. if defined(AUTOTOOL_autoheader) |
360 |
. if defined(AUTOTOOL_autoheader) |
| 343 |
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOHEADER} \ |
361 |
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOHEADER} \ |
| 344 |
${AUTOHEADER_ARGS}) |
362 |
${AUTOHEADER_ARGS}) |