blob: 2ea36198cc7c2ceb5eebe9379ed718d20818842a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# -*- 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$(PARALLELISM) --all -- -P$(PARALLELISM)
|