blob: 31ff4bf6a15ce3a9734f777325453cc4ef035e91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
all: client stm32
clean:
make -C client clean
make -C stm32f091 clean
client_makefile:
qmake client/client.pro -o client/makefile
client: client_makefile
make -j -C client
client_compile_commands: client_makefile
compiledb -o client/compile_commands.json make -BnC client
stm32:
make -j -C stm32f091
|