1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-07 20:23:50 +03:00
Files
samba-mirror/source/build/smb_build/main.pl
Stefan Metzmacher 38fd7c5e1a r687: add newline at eof
metze
2007-10-10 12:53:42 -05:00

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;
}