diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-09-09 13:38:02 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-09-09 13:38:23 +0200 |
commit | c46903bacbefcb708f028b8869000b2f2e058171 (patch) | |
tree | 7a44c4ca6375c934b5f41d9f673cc634fbf3791d /makefile | |
parent | bde529a4fb135eef1596ac0a5e6a8fa6a81cf711 (diff) |
qt6 client makefile using chartview example
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..0f478fd --- /dev/null +++ b/makefile @@ -0,0 +1,14 @@ +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 + +stm32: + make -C stm32f091 |