aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Marble <jacobmarble@google.com>2016-02-01 12:30:57 -0800
committerJacob Marble <jacobmarble@google.com>2016-02-01 21:56:51 +0000
commitc3d77144acaf4ac88ee3db5ce27d5a31ed3b8750 (patch)
tree26802bf59e263658d018c32e0f3b73e6b6065610
parent331355869fb6f8e11427f35807b7c310ec7743ca (diff)
downloadlibweave-c3d77144acaf4ac88ee3db5ce27d5a31ed3b8750.tar.gz
Make default Makefile target "all".
Change-Id: I6b020876586fdbcf2952e4fddee86353d62b9ad0 Reviewed-on: https://weave-review.googlesource.com/2432 Reviewed-by: Alex Vakulenko <avakulenko@google.com>
-rw-r--r--Makefile1
-rw-r--r--README.md11
2 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 6fd30f5..df27b58 100644
--- a/Makefile
+++ b/Makefile
@@ -104,4 +104,5 @@ clean :
cleanall : clean clean-gtest clean-libevhtp
.PHONY : clean cleanall all
+.DEFAULT_GOAL := all
diff --git a/README.md b/README.md
index fc042b7..a0dc2e7 100644
--- a/README.md
+++ b/README.md
@@ -80,17 +80,16 @@ sudo apt-get install autoconf automake binutils g++ hostapd libavahi-client-dev
The `make --jobs/-j` flag is encouraged, to speed up build time. For example
```
-make all -j
+make -j
```
-### Build library
-
-```
-make
+which happens to be the same as
```
+make all -j
+````
-or
+### Build library
```
make out/Debug/libweave.so