blob: d4cfa399d55f4ac3b6b9622a76bd9ca1e7a7f7de [file] [log] [blame]
Umesh Krishnaswamycb8e5c02012-12-17 10:54:53 -08001# Because I am old and crotchety and my fingers can't stop from running
2# `make` commands
3
4.PHONY: all doc tests clean
5
6all:
7 ant
8
9init:
10 ant init
11
12doc:
13 ant javadoc
14
15tests: all unit-tests
16
17unit-tests:
18 ant tests
19
20clean:
21 ant clean