diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..98b5d55 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +default: + $(MAKE) -C src + +install: + $(MAKE) -C src install + +remove: + $(MAKE) -C src remove + diff --git a/README.md b/README.md index 6318feb..8085c7a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ -# vahagn-test-channel -A basic sample channel application for Roku +# Hummingbird + +API test channel for Roku. ``` % export ROKU_DEV_TARGET= diff --git a/makefile/app.mk b/scripts/app.mk similarity index 100% rename from makefile/app.mk rename to scripts/app.mk diff --git a/src/Makefile b/src/Makefile index c21e496..cc3446c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -22,4 +22,4 @@ ZIP_EXCLUDE= -x \*.pkg -x storeassets\* -x keys\* -x \*/.\* APPS_ROOT_DIR := $(shell git rev-parse --show-toplevel) -include $(APPS_ROOT_DIR)/makefile/app.mk +include $(APPS_ROOT_DIR)/scripts/app.mk