blob: 60e06ef5c4d07a96b9aee88e42862a0c88261bf0 (
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 -C client
client_compile_commands: client_makefile
compiledb -o client/compile_commands.json make -C client
stm32:
make -C stm32f091
|