blob: 1e3cd84fb68625c51358cf08d45f694d96d077f4 (
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;
}
|