blob: a1ee79bc44bce82bde9557a381171f54aafeb8c8 (
plain) (
blame)
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
|
# SPDX-License-Identifier: GPL-2.0
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f <foo>" at a time, but pass parallelism.
.NOTPARALLEL:
mobile:
if test ! -d build-mobile; then (echo "error: please run build.sh before make"; exit -1;); fi
cd build-mobile; make
cd build-mobile; make install
desktop:
if test ! -d build; then (echo "error: please run build.sh before make"; exit -1;); fi
cd build; make
cd build; make install
check:
if test ! -d build; then (echo "error: please run build.sh before make"; exit -1;); fi
cd build; make check
all: desktop mobile check
|