blob: eb5d1f462452df190e37b8ccc863828785855d3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
all:
ant compile
clean:
ant clean
test:
ant test
replace:
find ./sources -name '*.java' -exec sh -c 'sed -n "s/$(FROM)/$(INTO)/g; \
w .tmp" {} && mv -f .tmp {}' \;
stats:
find . -name \*.java | xargs wc -l
|