summaryrefslogtreecommitdiff
path: root/infrastructure
diff options
context:
space:
mode:
Diffstat (limited to 'infrastructure')
-rwxr-xr-xinfrastructure/makebuildenv.pl.in31
-rwxr-xr-xinfrastructure/makeparcels.pl.in3
2 files changed, 7 insertions, 27 deletions
diff --git a/infrastructure/makebuildenv.pl.in b/infrastructure/makebuildenv.pl.in
index 56f7742e..f165accc 100755
--- a/infrastructure/makebuildenv.pl.in
+++ b/infrastructure/makebuildenv.pl.in
@@ -252,9 +252,6 @@ for(@modules_files)
# check directory exists
die "Module $mod can't be found\n" unless -d $mod;
-
- # skip bundled libraries with their own Makefile process
- next if ($mod =~ m|^bundled/|);
# and put in lists
push @modules,$mod;
@@ -513,20 +510,9 @@ __E
}
}
- # make include path
- my $include_paths = "";
- foreach my $mod (@all_deps_for_module)
- {
- if ($mod =~ m|^bundled/| and -d "$mod/include")
- {
- $include_paths .= "-I../../$mod/include ";
- }
- else
- {
- $include_paths .= "-I../../$mod ";
- }
- }
+ # make include path
+ my $include_paths = join(' ',map {'-I../../'.$_} @all_deps_for_module);
# is target a library?
my $target_is_library = ($type ne 'bin' && $type ne 'test');
@@ -788,18 +774,13 @@ __E
{
$dep_target = "\$(OUTBASE)/$dep/$1.a";
}
- elsif ($dep =~ m|^bundled/(.*)|)
- {
- $dep_target = "lib$1.a";
- }
- elsif ($dep =~ m|^bin/(.*)|)
+ elsif ($dep =~ m|^.*/(.*)|)
{
$dep_target = "\$(OUTBASE)/$dep/$1$platform_exe_ext";
}
else
{
- die "Don't know how to add compile-time " .
- "dependency on $dep";
+ $dep_target = "lib$dep.a";
}
$deps_makeinfo .= <<EOF;
@@ -820,11 +801,11 @@ EOF
my @lib_files;
foreach my $dep (reverse @all_deps_for_module)
{
- if ($dep =~ m|^lib/(.+)$|)
+ if ($dep =~ m|^lib\/(.+)$|)
{
push @lib_files, "\$(OUTBASE)/$dep/$1.a";
}
- elsif ($dep =~ m|^bundled/(.+)$|)
+ elsif ($dep =~ m|^([^/]+)$|)
{
push @lib_files, "../../$dep/lib$1.a";
}
diff --git a/infrastructure/makeparcels.pl.in b/infrastructure/makeparcels.pl.in
index bd23f795..aa8a9024 100755
--- a/infrastructure/makeparcels.pl.in
+++ b/infrastructure/makeparcels.pl.in
@@ -243,7 +243,7 @@ docs/htmlguide/man-html/${name}.html:
EOF
push @parcel_deps, "$dir/docs/${name}.html";
}
- elsif ($type eq 'configure')
+ elsif ($type eq 'subdir')
{
shift @args;
my $subdir = shift @args;
@@ -255,7 +255,6 @@ $name-build:
$name-clean:
cd $name; \$(MAKE) clean
-
EOF
push @parcel_deps, "$name-build";
push @clean_deps, "$name-clean";