aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: a94d2a000c924d61b37d2237e9d3dd11e880e6a9 (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 -jC client

client_compile_commands: client_makefile
	compiledb -o client/compile_commands.json make -BnC client

stm32:
	make -jC stm32f091