1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/Makefile

47 lines
1.1 KiB
Makefile
Raw Normal View History

.all:
2014-03-31 13:59:02 +02:00
.PHONY: all doc doc-man doc-latex docclean print-versions welcome
2014-03-31 13:59:02 +02:00
all: welcome
@echo ""
@exit 1
doc:
"$(MAKE)" -BC doc/doxygen
2013-08-12 11:08:19 +02:00
doc-man:
"$(MAKE)" -BC doc/doxygen man
doc-latex:
"$(MAKE)" -BC doc/doxygen latex
docclean:
"$(MAKE)" -BC doc/doxygen clean
clean:
@echo "Cleaning all build products for the current board"
2018-08-30 22:52:01 +02:00
@for dir in $(APPLICATION_DIRS); do "$(MAKE)" -C$$dir clean; done
distclean: docclean
@echo "Cleaning all build products"
2018-08-30 22:52:01 +02:00
@for dir in $(APPLICATION_DIRS); do "$(MAKE)" -C$$dir distclean; done
welcome:
@echo "Welcome to RIOT - The friendly OS for IoT!"
@echo ""
@echo "You executed 'make' from the base directory."
@echo "You should run 'make' in your application's directory instead."
@echo ""
@echo "Please see our Quick Start Guide at:"
2017-05-31 07:27:54 +02:00
@echo " https://doc.riot-os.org/getting-started.html"
@echo "Or ask questions on our mailing list:"
@echo " users@riot-os.org (http://lists.riot-os.org/mailman/listinfo/users)"
print-versions:
@./dist/tools/ci/print_toolchain_versions.sh
include makefiles/boards.inc.mk
2018-08-30 22:52:01 +02:00
include makefiles/app_dirs.inc.mk
-include makefiles/tests.inc.mk