mirror of
https://github.com/blackmagic-debug/blackmagic.git
synced 2025-10-14 02:58:36 +08:00
18 lines
752 B
Makefile
18 lines
752 B
Makefile
all:
|
|
@echo "Makefile build system is deprecated."
|
|
@echo ""
|
|
@echo "Please use Meson build system instead."
|
|
@echo ""
|
|
@echo "For most basic build, which builds only Black Magic Debug Application (BMDA), run the following commands:"
|
|
@echo "> meson setup build"
|
|
@echo "> meson compile -C build"
|
|
@echo ""
|
|
@echo "You can find example firmware configuration files in the \`cross-file\` subdirectory."
|
|
@echo "For example, to build a firmware for the native hardware run the following commands:"
|
|
@echo "> meson setup build-native --cross-file cross-file/native.ini --werror"
|
|
@echo "> meson compile -C build-native"
|
|
@echo ""
|
|
@echo "For further instructions please refer to the README.md in the root directory of this repository."
|
|
@echo ""
|
|
@exit 1
|