# Last edited on 2012-09-24 03:32:41 by stolfilocal

# Shall we display static images and movie frames?
SHOW := YES

# ACTION := medium-portrait
# ACTION := middle 
ACTION := movie 

# all: print_help
all: 
	${MAKE} ${ACTION}

print_help:
	@-echo "You must execute 'make <SOMETHING>'"
	@-echo ""
	@-echo "To render a static image use any of these:"
	@-echo ""
	@-echo "  make large-portrait"
	@-echo "  make large-landscape"
	@-echo "  make medium-portrait"
	@-echo "  make medium-landscape"
	@-echo "  make small-portrait"
	@-echo "  make small-landscape"
	@-echo ""
	@-echo "To render a movie (or some frames of a movie) use any of these:"
	@-echo ""
	@-echo "  make first"
	@-echo "  make middle"
	@-echo "  make last"
	@-echo "  make strip"
	@-echo "  make fast"
	@-echo "  make movie"
	@-echo "  make clean"
	@-echo "  make still"

include STATIC.make
include MOVIE.make

