Fix the richtext sample being compiled when USE_RICHTEXT=0

This commit is contained in:
Raul Tambre
2017-02-05 13:52:18 +02:00
parent 314d3adbee
commit 801b0b1c30
4 changed files with 9 additions and 5 deletions

View File

@@ -59,8 +59,10 @@ ifeq ($(USE_RIBBON),1)
__ribbon___depname = ribbon
endif
ifeq ($(USE_HTML),1)
ifeq ($(USE_RICHTEXT),1)
__richtext___depname = richtext
endif
endif
ifeq ($(USE_MEDIA),1)
__splash___depname = splash
endif
@@ -336,9 +338,11 @@ ribbon:
endif
ifeq ($(USE_HTML),1)
ifeq ($(USE_RICHTEXT),1)
richtext:
$(MAKE) -C richtext -f makefile.gcc $(MAKEARGS) all
endif
endif
sashtest:
$(MAKE) -C sashtest -f makefile.gcc $(MAKEARGS) all