makefile/app.mk -> scripts/app.mk

This commit is contained in:
2023-01-16 10:50:14 +00:00
parent 13ff868cde
commit 8a55a03576
4 changed files with 13 additions and 3 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
default:
$(MAKE) -C src
install:
$(MAKE) -C src install
remove:
$(MAKE) -C src remove

View File

@@ -1,5 +1,6 @@
# vahagn-test-channel # Hummingbird
A basic sample channel application for Roku
API test channel for Roku.
``` ```
% export ROKU_DEV_TARGET=<ip> % export ROKU_DEV_TARGET=<ip>

View File

@@ -22,4 +22,4 @@ ZIP_EXCLUDE= -x \*.pkg -x storeassets\* -x keys\* -x \*/.\*
APPS_ROOT_DIR := $(shell git rev-parse --show-toplevel) APPS_ROOT_DIR := $(shell git rev-parse --show-toplevel)
include $(APPS_ROOT_DIR)/makefile/app.mk include $(APPS_ROOT_DIR)/scripts/app.mk