From 8a55a035764e2baaef2892a95046f5732c03424a Mon Sep 17 00:00:00 2001 From: Vahagn Khachatryan Date: Mon, 16 Jan 2023 10:50:14 +0000 Subject: [PATCH] makefile/app.mk -> scripts/app.mk --- Makefile | 9 +++++++++ README.md | 5 +++-- {makefile => scripts}/app.mk | 0 src/Makefile | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 Makefile rename {makefile => scripts}/app.mk (100%) 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