blob: 63c4dd001b61b328079fc7f9f30f77a070d593ef [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001# Because I am old and crotchety and my fingers can't stop from running
2# `make` commands
3
4.PHONY: docs doc all test tests count install clean
5
6all:
7 ant
8
9init:
10 ant init
11
12docs:
13 ant javadoc
14
15doc:
16 ant javadoc
17
18javadoc:
19 ant javadoc
20
21check: tests
22test: tests
23
24tests: all unit-tests
25
26unit-tests:
27 ant tests
28
29regression-tests:
30 make -C regress tests
31
32count:
33 @find src -name \*.java | xargs wc -l | sort -n
34
35clean:
36 ant clean