23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
else
mersdk_sb2 := cd $(mer_root_dir)/rpmbuilddir-arm && sb2 -t $(mersdk_target)
endif
emu_ssh := ssh -p 2223 -i $(emu_dir)/nemo nemo@localhost
emu_ssh_root := ssh -p 2223 -i $(emu_dir)/root root@localhost
TRANSLATIONS = de
.PHONY: all build buildall clean install rpm run deploy-emu
all: compile
reformat:
clang-format -i --style=file src/*xx
|
|
|
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
else
mersdk_sb2 := cd $(mer_root_dir)/rpmbuilddir-arm && sb2 -t $(mersdk_target)
endif
emu_ssh := ssh -p 2223 -i $(emu_dir)/nemo nemo@localhost
emu_ssh_root := ssh -p 2223 -i $(emu_dir)/root root@localhost
TRANSLATIONS = de sv
.PHONY: all build buildall clean install rpm run deploy-emu
all: compile
reformat:
clang-format -i --style=file src/*xx
|