Skip to content

Commit

Permalink
Merge pull request #2928 from cypof/lib_make_target
Browse files Browse the repository at this point in the history
New make target to only build the library.
  • Loading branch information
jeffdonahue committed Aug 14, 2015
2 parents c6b9f58 + 660cd12 commit de7b0bf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -386,11 +386,13 @@ endif
##############################
# Define build targets
##############################
.PHONY: all test clean docs linecount lint lintclean tools examples $(DIST_ALIASES) \
.PHONY: all lib test clean docs linecount lint lintclean tools examples $(DIST_ALIASES) \
py mat py$(PROJECT) mat$(PROJECT) proto runtest \
superclean supercleanlist supercleanfiles warn everything

all: $(STATIC_NAME) $(DYNAMIC_NAME) tools examples
all: lib tools examples

lib: $(STATIC_NAME) $(DYNAMIC_NAME)

everything: $(EVERYTHING_TARGETS)

Expand Down

0 comments on commit de7b0bf

Please sign in to comment.