mirror of
https://github.com/samba-team/samba.git
synced 2025-12-07 20:23:50 +03:00
23 lines
498 B
Raku
23 lines
498 B
Raku
###########################################################
|
|
### 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;
|
|
}
|