diff options
author | Jack Lloyd <[email protected]> | 2017-08-30 12:23:30 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-08-30 12:23:30 -0400 |
commit | 931fc0db4ae4a2b63c81bee65186bd181368a5cd (patch) | |
tree | 846c23990d3f79f8d32f81d6698ce6aa4d7cdad0 /src/build-data/makefile/gmake.in | |
parent | 06eefb457eb8e4fadd46d8dbde026a9f163ff4f1 (diff) |
Add support for LLVM bitcode target
Diffstat (limited to 'src/build-data/makefile/gmake.in')
-rw-r--r-- | src/build-data/makefile/gmake.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build-data/makefile/gmake.in b/src/build-data/makefile/gmake.in index 4b4426e5d..70b534503 100644 --- a/src/build-data/makefile/gmake.in +++ b/src/build-data/makefile/gmake.in @@ -38,11 +38,11 @@ cli: $(CLI) tests: $(TEST) $(CLI): $(LIBRARIES) $(CLIOBJS) - $(CLI_LINK_CMD) $(LDFLAGS) $(CLIOBJS) -L%{out_dir} -l%{libname} $(CLI_LINKS_TO) -o $(CLI) + $(CLI_LINK_CMD) $(LDFLAGS) $(CLIOBJS) $(CLI_LINKS_TO) -o $(CLI) $(CLI_POST_LINK_CMD) $(TEST): $(LIBRARIES) $(TESTOBJS) - $(TEST_LINK_CMD) $(LDFLAGS) $(TESTOBJS) -L%{out_dir} -l%{libname} $(TEST_LINKS_TO) -o $(TEST) + $(TEST_LINK_CMD) $(LDFLAGS) $(TESTOBJS) $(TEST_LINKS_TO) -o $(TEST) $(TEST_POST_LINK_CMD) $(STATIC_LIB): $(LIBOBJS) |