Skip to content

Commit

Permalink
Makefile: default build target is libs
Browse files Browse the repository at this point in the history
  • Loading branch information
attipaci committed Oct 15, 2024
1 parent dd811fe commit 4790056
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,13 @@ else
$(info WARNING! Doxygen is not available. Will skip 'dox' target)
endif

# Build libraries
.PHONY: libs
runtime: shared static

# Build everything...
.PHONY: all
all: shared static $(DOC_TARGETS) check
all: libs $(DOC_TARGETS) check

# Shared libraries (versioned and unversioned)
.PHONY: shared
Expand Down

0 comments on commit 4790056

Please sign in to comment.