aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/build-data/makefile')
-rw-r--r--src/build-data/makefile/gmake.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/build-data/makefile/gmake.in b/src/build-data/makefile/gmake.in
index c77c1908c..4b4426e5d 100644
--- a/src/build-data/makefile/gmake.in
+++ b/src/build-data/makefile/gmake.in
@@ -21,7 +21,7 @@ CLIOBJS = %{cli_objs}
TESTOBJS = %{test_objs}
# First make target. Will be used by default
-all: $(CLI) $(TEST)
+all: libs cli tests
# Build Commands
%{lib_build_cmds}
@@ -34,6 +34,8 @@ all: $(CLI) $(TEST)
%{gmake_dso_in}
libs: $(LIBRARIES)
+cli: $(CLI)
+tests: $(TEST)
$(CLI): $(LIBRARIES) $(CLIOBJS)
$(CLI_LINK_CMD) $(LDFLAGS) $(CLIOBJS) -L%{out_dir} -l%{libname} $(CLI_LINKS_TO) -o $(CLI)