summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/main.pl
blob: 4c42c7a7c183446ab145a932c92f6af41c9f05f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
###########################################################
### SMB Build System					###
### - the main program					###
###							###
###  Copyright (C) Stefan (metze) Metzmacher 2004	###
###  Copyright (C) Jelmer Vernooij 2005
###  Released under the GNU GPL				###
###########################################################

use smb_build::makefile;
use smb_build::smb_build_h;
use smb_build::input;
use smb_build::config_mk;
use smb_build::output;
use smb_build::env;
use config;
use strict;

my $INPUT = {};

my $mkfile = smb_build::config_mk::run_config_mk($INPUT, "main.mk");

if (defined($ENV{"SUBSYSTEM_OUTPUT_TYPE"})) {
	$smb_build::input::subsystem_output_type = $ENV{SUBSYSTEM_OUTPUT_TYPE};
} elsif ($config::config{BLDMERGED} eq "true") {
	$smb_build::input::subsystem_output_type = "MERGEDOBJ";
}

if (defined($ENV{"LIBRARY_OUTPUT_TYPE"})) {
	$smb_build::input::library_output_type = $ENV{LIBRARY_OUTPUT_TYPE};
} elsif ($config::config{BLDSHARED} eq "true") {
	#FIXME: This should eventually become SHARED_LIBRARY 
	# rather then MERGEDOBJ once I'm certain it works ok -- jelmer
	$smb_build::input::library_output_type = "MERGEDOBJ";
} elsif ($config::config{BLDMERGED} eq "true") {
	$smb_build::input::library_output_type = "MERGEDOBJ";
}

if (defined($ENV{"MODULE_OUTPUT_TYPE"})) {
	$smb_build::input::module_output_type = $ENV{MODULE_OUTPUT_TYPE};
} elsif ($config::config{BLDSHARED} eq "true") {
	#FIXME: This should eventually become SHARED_LIBRARY 
	# rather then MERGEDOBJ once I'm certain it works ok -- jelmer
	$smb_build::input::module_output_type = "MERGEDOBJ";
} elsif ($config::config{BLDMERGED} eq "true") {
	$smb_build::input::module_output_type = "MERGEDOBJ";
}

my $DEPEND = smb_build::input::check($INPUT, \%config::enabled);
my $OUTPUT = output::create_output($DEPEND);
my $mkenv = new smb_build::makefile(\%config::config, $mkfile);

foreach my $key (values %$OUTPUT) {
	next unless defined $key->{OUTPUT_TYPE};

	$mkenv->MergedObj($key) if $key->{OUTPUT_TYPE} eq "MERGEDOBJ";
	$mkenv->ObjList($key) if $key->{OUTPUT_TYPE} eq "OBJLIST";
	$mkenv->StaticLibrary($key) if $key->{OUTPUT_TYPE} eq "STATIC_LIBRARY";
	$mkenv->PkgConfig($key) if ($key->{OUTPUT_TYPE} eq "SHARED_LIBRARY") and
						defined($key->{MAJOR_VERSION});
	$mkenv->SharedLibrary($key) if $key->{OUTPUT_TYPE} eq "SHARED_LIBRARY";
	$mkenv->Binary($key) if $key->{OUTPUT_TYPE} eq "BINARY";
	$mkenv->Manpage($key) if defined($key->{MANPAGE});
	$mkenv->Header($key) if defined($key->{PUBLIC_HEADERS});
}

# FIXME: These two lines are a hack
$mkenv->ProtoHeader($OUTPUT->{PROTO});
$mkenv->ProtoHeader($OUTPUT->{ALL_OBJS});

$mkenv->write("Makefile");
smb_build_h::create_smb_build_h($OUTPUT, "include/smb_build.h");

1;