diff options
author | Jack Lloyd <[email protected]> | 2017-08-27 06:29:52 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-08-29 07:35:44 -0400 |
commit | f97aa84fa2e9d007065e875243bd4112bb91a130 (patch) | |
tree | 5075139a69d879d9ef46f93c79dc92d1e46b2a8b /src/build-data | |
parent | 44a80b26c183f6e785745149aab7c3e0d469fb6d (diff) |
Further fixes to ci build script
Diffstat (limited to 'src/build-data')
-rw-r--r-- | src/build-data/makefile/gmake.in | 4 |
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) |