summaryrefslogtreecommitdiff
path: root/sdk.mk
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2022-10-06 00:19:29 +0200
committerChristian Pointner <equinox@spreadspace.org>2022-10-06 00:19:29 +0200
commitb49bae199727d313683cba5401a2ac1cf87a6a4a (patch)
treec3a375efe68afe2f2e5ccdbc5f3db99ff2e80db1 /sdk.mk
parentgcc 10 is not yet supported by chibios (diff)
further cleanup sdk builds
Diffstat (limited to 'sdk.mk')
-rw-r--r--sdk.mk37
1 files changed, 37 insertions, 0 deletions
diff --git a/sdk.mk b/sdk.mk
new file mode 100644
index 0000000..9d2bb98
--- /dev/null
+++ b/sdk.mk
@@ -0,0 +1,37 @@
+##
+## spreadspace rppico utils
+##
+##
+## Copyright (C) 2022 Christian Pointner <equinox@spreadspace.org>
+##
+## This file is part of spreadspace rppico utils.
+##
+## spreadspace rppico utils is free software: you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation, either version 3 of the License, or
+## any later version.
+##
+## spreadspace rppico utils is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with spreadspace rppico utils. If not, see <http://www.gnu.org/licenses/>.
+##
+
+all: build
+.PHONY: build clean distclean
+
+build/Makefile:
+ mkdir -p build
+ cd build; cmake -D PICO_PLATFORM=${PICO_PLATFORM} -D PICO_BOARD=${PICO_BOARD} -D PICO_COMPILER=pico_arm_gcc -D CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} ..
+
+build: build/Makefile
+ make -C build
+
+clean:
+ make -C build clean
+
+distclean:
+ rm -rf build