mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 23:55:46 +08:00
14 lines
202 B
Makefile
14 lines
202 B
Makefile
|
phony := all
|
||
|
all:
|
||
|
|
||
|
include config.mk
|
||
|
|
||
|
ifneq ($(MAKE_LIB),1)
|
||
|
TARGET := rtthread.elf
|
||
|
include src.mk
|
||
|
endif
|
||
|
|
||
|
$(if $(strip $(RTT_ROOT)),,$(error RTT_ROOT not defined))
|
||
|
|
||
|
include $(RTT_ROOT)/tools/rtthread.mk
|