-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (28 loc) · 1.11 KB
/
Makefile
File metadata and controls
36 lines (28 loc) · 1.11 KB
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
all: tls_server client
optee_server-rs:
make -C optee_server-rs
optee_tls_server-rs:
make -C optee_tls_server-rs
client-rs:
make -C client-rs
http_client-rs:
make -C http_client-rs
server:
make -C server-rs
install:
install -D optee_tls_server-rs/host/target/aarch64-unknown-linux-gnu/release/optee_tls_server-rs -t out/host/ || :
install -D optee_tls_server-rs/ta/target/aarch64-unknown-optee-trustzone/release/*.ta -t out/ta/ || :
install -D optee_server-rs/host/target/aarch64-unknown-linux-gnu/release/optee_server-rs -t out/host/
install -D optee_server-rs/ta/target/aarch64-unknown-optee-trustzone/release/*.ta -t out/ta/
install -D http_client-rs/target/aarch64-unknown-linux-gnu/release/http_client-rs -t out/host || :
install -D client-rs/target/aarch64-unknown-linux-gnu/release/client-rs -t out/host || :
scp:
scp out/host/* atde:/home/atmark/workspace/optee/out/ca/
scp out/ta/* atde:/home/atmark/workspace/optee/out/ta/
clean:
make -C client-rs clean
make -C optee_tls_server-rs clean
make -C optee_server-rs clean
make -C server-rs clean
make -C http_client clean
rm -rf out