summaryrefslogtreecommitdiff
path: root/automake.in
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2002-07-07 22:38:46 +0000
committerTom Tromey <tromey@redhat.com>2002-07-07 22:38:46 +0000
commit285aebe9e5a85ba3ee6f1c1eb3d7bf07540ee096 (patch)
treec28fbf32f27696eda181554e48562ad4ef05ee92 /automake.in
parent69dcbaaff489ae4e7455992ff9d76c435e69c331 (diff)
downloadautomake-285aebe9e5a85ba3ee6f1c1eb3d7bf07540ee096.tar.gz
* m4/depend.m4 (_AM_DEPENDENCIES): Compute am__fastdep<compiler>
conditional. * automake.in (handle_languages): Compute FASTDEP. * lib/am/depend2.am: Added %FASTDEP% mode.
Diffstat (limited to 'automake.in')
-rwxr-xr-xautomake.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/automake.in b/automake.in
index 2278fb698..84231bd70 100755
--- a/automake.in
+++ b/automake.in
@@ -1892,11 +1892,14 @@ sub handle_languages
my $AMDEP = (($use_dependencies && $lang->autodep ne 'no')
? 'AMDEP' : 'FALSE');
+ my $FASTDEP = (($use_dependencies && $lang->autodep ne 'no')
+ ? ('am__fastdep' . $fpfx) : 'FALSE');
my %transform = ('EXT' => $ext,
'PFX' => $pfx,
'FPFX' => $fpfx,
'AMDEP' => $AMDEP,
+ 'FASTDEP' => $FASTDEP,
'-c' => $lang->compile_flag || '',
'MORE-THAN-ONE'
=> (count_files_for_language ($lang->name) > 1));