jf-roku/Makefile

29 lines
869 B
Makefile
Raw Normal View History

2019-05-02 17:45:07 +00:00
#########################################################################
# Makefile Usage:
#
# 1) Make sure that you have the curl command line executable in your path
# 2) Set the variable ROKU_DEV_TARGET in your environment to the IP
# address of your Roku box. (e.g. export ROKU_DEV_TARGET=192.168.1.1.
# Set in your this variable in your shell startup (e.g. .bashrc)
# 3) and set up the ROKU_DEV_PASSWORD environment variable, too
##########################################################################
APPNAME = Jellyfin_Roku
2023-04-27 00:48:36 +00:00
VERSION = 1.6.6
2019-05-02 17:45:07 +00:00
2022-12-07 23:19:56 +00:00
ZIP_EXCLUDE= -x xml/* -x artwork/* -x \*.pkg -x storeassets\* -x keys\* -x \*/.\* -x *.git* -x *.DS* -x *.pkg* -x dist/**\* -x out/**\*
2019-05-02 17:45:07 +00:00
include app.mk
2020-06-27 14:13:00 +00:00
dev:
$(MAKE) BUILD='dev' package
beta:
$(MAKE) BUILD='beta' package
release:
$(MAKE) BUILD='release' package
deploy: prep_staging remove install