mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 02:26:19 +00:00
24 lines
561 B
Makefile
Executable File
24 lines
561 B
Makefile
Executable File
# 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:
|
|
rm cooked/*.html || true
|
|
rm cooked/*.jar || true
|
|
rm cooked/*.js || true
|
|
rmdir cooked || true
|
|
|
|
test: clean tests.html
|
|
ln -sf test/recipes/sample.txt .
|
|
open cooked/tests.html
|
|
|
|
tests.html:
|
|
mkdir -p cooked
|
|
cook $(PWD)/test/recipes/tests.html.recipe -d $(PWD)/cooked -o tests.html
|
|
|
|
alpha:
|
|
./bldalpha
|