-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
23 lines (21 loc) · 827 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#########################################################################
# Simple makefile for packaging Roku Simple Poster Screen example
#
# Makefile Usage:
# > make
# > make install
# > make remove
#
# 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 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)
##########################################################################
APPNAME = nasplayer
VERSION = 0.1
ZIP_EXCLUDE = -x source/.\* -x .git\* -x misc\* -x movied\*
include ./app.mk