forked from NeuronRobotics/nrjavaserial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
45 lines (43 loc) · 840 Bytes
/
Makefile
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
all:
echo "Please specify a system: windows wine linux osx"
gradle build
windows:
make -C .\src\main\c windowsLocal
gradle build
wine:
make -C src/main/c windows
gradle build
linux:
make -C src/main/c linux
gradle build
linux32:
make -C src/main/c linux32
gradle build
linux64:
make -C src/main/c linux64
gradle build
freebsd:
gmake -C src/main/c freebsd
gradle build
freebsd32:
gmake -C src/main/c freebsd32
gradle build
freebsd64:
gmake -C src/main/c freebsd64
gradle build
arm:
sudo apt-get install g++-arm-linux-gnueabihf g++-arm-linux-gnueabi
make -C src/main/c arm7
make -C src/main/c arm7HF
make -C src/main/c arm8
make -C src/main/c arm8HF
gradle build
ppc:
make -C src/main/c ppc
gradle build
osx:
make -C src/main/c osx
gradle build
aarch64:
make -C src/main/c -f Makefile.aarch64
./gradlew build