diff options
| author | Frank Gevaerts <frank@gevaerts.be> | 2012-03-03 19:37:40 +0100 |
|---|---|---|
| committer | Frank Gevaerts <frank@gevaerts.be> | 2012-03-03 20:19:08 +0100 |
| commit | 466a7c6a405f80cd8e01ebf0a70eb406863a38f1 (patch) | |
| tree | acd8dcec239d7407a69df7f20b9ad7f3b10f4200 /tools/root.make | |
| parent | 13a7c9ac70bfeed574d38705ab568c2085ca77e7 (diff) | |
| download | rockbox-466a7c6a405f80cd8e01ebf0a70eb406863a38f1.zip rockbox-466a7c6a405f80cd8e01ebf0a70eb406863a38f1.tar.gz rockbox-466a7c6a405f80cd8e01ebf0a70eb406863a38f1.tar.bz2 rockbox-466a7c6a405f80cd8e01ebf0a70eb406863a38f1.tar.xz | |
Integrate the warble tool in the regular build system.
Only sdl app builds work properly for now.
Change-Id: I7807d42f69b8577b401e48cdc63de71e54f49217
Diffstat (limited to 'tools/root.make')
| -rw-r--r-- | tools/root.make | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/root.make b/tools/root.make index 7427906..3231b73 100644 --- a/tools/root.make +++ b/tools/root.make @@ -87,11 +87,13 @@ ifneq (,$(findstring bootloader,$(APPSDIR))) else ifneq (,$(findstring bootbox,$(APPSDIR))) BOOTBOXLDOPTS = -Wl,--gc-sections include $(APPSDIR)/bootbox.make -else ifneq (,$(findstring checkwps,$(APPSDIR))) +else ifneq (,$(findstring checkwps,$(APP_TYPE))) include $(APPSDIR)/checkwps.make include $(ROOTDIR)/lib/skin_parser/skin_parser.make -else ifneq (,$(findstring database,$(APPSDIR))) +else ifneq (,$(findstring database,$(APP_TYPE))) include $(APPSDIR)/database.make +else ifneq (,$(findstring warble,$(APP_TYPE))) + include $(ROOTDIR)/lib/rbcodec/test/warble.make else include $(APPSDIR)/apps.make include $(APPSDIR)/lang/lang.make |