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

25 lines
600 B
Makefile
Raw Normal View History

.all:
2014-03-31 13:59:02 +02:00
.PHONY: all doc docclean 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
docclean:
"$(MAKE)" -BC doc/doxygen clean
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:"
@echo " https://github.com/RIOT-OS/RIOT/wiki/Quick-Start-Guide"
@echo "Or ask questions on our mailing list:"
@echo " users@riot-os.org (http://lists.riot-os.org/mailman/listinfo/users)"