Skip to content

Commit

Permalink
Make "all" the default target again (#459)
Browse files Browse the repository at this point in the history
Recent additions to included makefile have changed the default target
from "all" to something unexpected (Soter's static library, if you're
lucky). Let's make sure that "all" is the default target when users
are simply running "make".
  • Loading branch information
ilammy committed Apr 16, 2019
1 parent b4384c3 commit 2ff700c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
# limitations under the License.
#

# Make sure that "all" is the default target no matter what
all:

#CC = clang
CLANG_FORMAT ?= clang-format
CLANG_TIDY ?= clang-tidy
Expand Down

0 comments on commit 2ff700c

Please sign in to comment.