2011-11-22 14:29:29 +00:00
|
|
|
# Start at a Makefile or managing build activities.
|
|
|
|
# Expects a 'cook' script somewhere on the $PATH.
|
|
|
|
# See 'cook' in this directory for a sample you can use.
|
|
|
|
# For now users the OSX specific "open" to run a test file. This
|
|
|
|
# will need to change.
|
|
|
|
#
|
|
|
|
|
|
|
|
clean:
|
2011-12-03 11:41:25 +00:00
|
|
|
rm *.html || true
|
|
|
|
rm *.jar || true
|
|
|
|
rm *.js || true
|
|
|
|
|
2011-11-22 14:29:29 +00:00
|
|
|
|
|
|
|
test: clean tests.html
|
|
|
|
ln -sf test/recipes/sample.txt .
|
2011-12-03 11:41:25 +00:00
|
|
|
open tests.html
|
2011-11-22 14:29:29 +00:00
|
|
|
|
|
|
|
tests.html:
|
2011-12-03 11:41:25 +00:00
|
|
|
cook $(PWD)/test/recipes/tests.html.recipe tests.html
|
2011-11-22 14:29:29 +00:00
|
|
|
|
|
|
|
alpha:
|
|
|
|
./bldalpha
|