forked from twilio/twilio-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (17 loc) · 648 Bytes
/
Makefile
File metadata and controls
22 lines (17 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# In this case the Makefile is fairly simple. Still providing it to provide
# consistency with other helper libraries
.PHONY: test install clean authors
install:
mvn install
test:
mvn test
clean:
rm -rf target
authors:
echo "Authors\n=======\n\nA huge thanks to all of our contributors:\n\n" > AUTHORS.md
git log --raw | grep "^Author: " | cut -d ' ' -f2- | cut -d '<' -f1 | sed 's/^/- /' | sort | uniq >> AUTHORS.md
docs:
mvn javadoc:javadoc
@echo "If you want to update the Github Pages site:\n"
@echo "git checkout -b gh-pages origin/gh-pages; cp -r target/apidocs/* ."
@echo "\nReview, commit (but don't add target/), then push."