include ../../Makefile.project include ../../Makefile.toolchain .PHONY: all clean install all: ifeq ($(CONFIG_SUPPORT_MONITOR), y) @$(MAKE) -C monitor all else @$(MAKE) -C dvb all endif clean_loop: ifeq ($(CONFIG_SUPPORT_MONITOR), y) @$(MAKE) -C monitor clean_loop else @$(MAKE) -C dvb clean_loop endif clean: ifeq ($(CONFIG_SUPPORT_MONITOR), y) @$(MAKE) -C monitor clean else @$(MAKE) -C dvb clean endif