HMS

Home Media Server for Roku Players
git clone https://www.brianlane.com/git/HMS
Log | Files | Refs | README | LICENSE

Makefile (1140B)


      1 #########################################################################
      2 # Simple makefile for packaging Roku Simple Video Player example
      3 #
      4 # Makefile Usage:
      5 # > make
      6 # > make install
      7 # > make remove
      8 #
      9 # Important Notes: 
     10 # To use the "install" and "remove" targets to install your
     11 # application directly from the shell, you must do the following:
     12 #
     13 # to exclude certain files from being added to the zipfile during packaging
     14 # include a line like this:ZIP_EXCLUDE= -x keys\*
     15 # that will exclude any file who's name begins with 'keys'
     16 # to exclude using more than one pattern use additional '-x <pattern>' arguments
     17 # ZIP_EXCLUDE= -x \*.pkg -x storeassets\*
     18 #
     19 # 1) Make sure that you have the curl command line executable in your path
     20 # 2) Set the variable ROKU_DEV_TARGET in your environment to the IP 
     21 #    address of your Roku box. (e.g. export ROKU_DEV_TARGET=192.168.1.1.
     22 #    Set in your this variable in your shell startup (e.g. .bashrc)
     23 ##########################################################################  
     24 APPNAME = HMS
     25 VERSION = 4.0
     26 ZIP_EXCLUDE = -x .git\* -x \*.pkg -x storeassets\* -x keys\* -x \*/.\*
     27 
     28 include ./app.mk