summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/main.pm
diff options
context:
space:
mode:
Diffstat (limited to 'source4/build/smb_build/main.pm')
-rw-r--r--source4/build/smb_build/main.pm13
1 files changed, 8 insertions, 5 deletions
diff --git a/source4/build/smb_build/main.pm b/source4/build/smb_build/main.pm
index 4df7be7dae..b84f4fd8be 100644
--- a/source4/build/smb_build/main.pm
+++ b/source4/build/smb_build/main.pm
@@ -12,20 +12,23 @@ use smb_build_h;
use input;
use config_mk;
use output;
+use dump;
use strict;
sub smb_build_main($)
{
my $SMB_BUILD_CTX = shift;
- check_input($SMB_BUILD_CTX);
+ input::check($SMB_BUILD_CTX);
- create_depend($SMB_BUILD_CTX);
+ depend::create_depend($SMB_BUILD_CTX);
- create_output($SMB_BUILD_CTX);
+ output::create_output($SMB_BUILD_CTX);
- create_makefile_in($SMB_BUILD_CTX);
+ makefile::create_makefile_in($SMB_BUILD_CTX);
- create_smb_build_h($SMB_BUILD_CTX);
+ smb_build_h::create_smb_build_h($SMB_BUILD_CTX);
+
+ dump::dump_ctx($SMB_BUILD_CTX);
return 0;
}