blob: 1694f3a78dee405b8280473de8f3125c9466a47a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*- 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
export gb_Side=build
.PHONY : build
build:
$(SOLARENV)/bin/build.pl -P$(PARALLELISM) --all -- -P$(PARALLELISM)
|