forked from ear9mrn/MythRokuPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·43 lines (39 loc) · 1.33 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
################################################################################
# Simple makefile for packaging and deploying the MythRokuPlayer
#
# Makefile Usage:
# $ make
# $ make install
# $ make remove
#
# To exclude certain files from being added to the zipfile during packaging
# include a line like this:
#
# ZIP_EXCLUDE= -x test\* -x .\*
#
# This will exclude any file who's name begins with 'keys' and all hidden files.
#
# Important Notes:
# To use the "install" and "remove" targets to install your application directly
# from the shell, you must do the following:
#
# 1) Make sure that you have the curl command line executable in your path
# 2) Set the environment variable ROKU_DEV_TARGET to the IP address of your Roku
# box. For example:
#
# $ export ROKU_DEV_TARGET=192.168.1.1
# $ make install
#
# Alternatively, you can add the following to your ~/.bashrc file:
#
# export ROKU_DEV_TARGET=192.168.1.1
#
# Or, you can edit the mythrokumake tool (<pathtomythrokuplayer>/tools/) with
# your Roku's IP address. This tool is especially useful if you have more
# than one Roku because you can push to more than one Roku with one command.
#
################################################################################
APPNAME = MythRokuPlayer
VERSION = 1.1
ZIP_EXCLUDE= -x mythroku\* -x tools\* -x zips\* -x .\*
include app.mk