blob: 18d3de3991c7692ad2260f3d6eca97f1512a2e2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
###########################################################
### SMB Build System ###
### - the main program ###
### ###
### Copyright (C) Stefan (metze) Metzmacher 2004 ###
### Released under the GNU GPL ###
###########################################################
sub smb_build_main($)
{
check_input($SMB_BUILD_CTX);
create_depend($SMB_BUILD_CTX);
create_output($SMB_BUILD_CTX);
create_makefile_in($SMB_BUILD_CTX);
create_smb_build_h($SMB_BUILD_CTX);
return 0;
}
|