# spidermonkey javascript interpreter:
JS = js

# the defaul target is the file hello.txt:
hello.txt: hello.js
	$(JS) hello.js > hello.txt

clean:
	rm -f hello.txt
