diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-01-24 15:48:30 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-02-05 19:34:05 -0600 |
commit | c857dff7fc4b180c1d405ea5584e06c0581427ae (patch) | |
tree | e2f20f13825aa2c0ba078ae77f2723452d9a957f /cross_toolset | |
parent | 909cd34b7b0982078a50b9ed46cf57811d9571df (diff) |
switch to include-based build rather than sourced-based build
Diffstat (limited to 'cross_toolset')
-rw-r--r-- | cross_toolset/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cross_toolset/Makefile b/cross_toolset/Makefile new file mode 100644 index 000000000000..271c83a316a0 --- /dev/null +++ b/cross_toolset/Makefile @@ -0,0 +1,14 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This build the modules needed on the build side for a cross-compilation +# + +SHELL=/usr/bin/env bash +include ../config_build.mk + + +.PHONY : build + +build: + $(SOLARENV)/bin/build.pl -P$(BUILD_NCPUS) --all -- -P$(GMAKE_PARALLELISM) + |