diff options
author | Simon Warta <[email protected]> | 2015-06-20 16:43:40 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-06-20 16:43:40 +0200 |
commit | b5aa126daef403e7410a769dc262cf683ce36202 (patch) | |
tree | 07ac80b9ee3e92a155211360d72d2c56a1920d3a /src/build-data/makefile/gmake.in | |
parent | aa01b0f02df505ba7e6f52a6449fe7112ce2acae (diff) |
Prefix gmake includes
Diffstat (limited to 'src/build-data/makefile/gmake.in')
-rw-r--r-- | src/build-data/makefile/gmake.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/build-data/makefile/gmake.in b/src/build-data/makefile/gmake.in index 191b0739f..ac3b8fae1 100644 --- a/src/build-data/makefile/gmake.in +++ b/src/build-data/makefile/gmake.in @@ -1,6 +1,6 @@ %{header_in} -%{commands_in} +%{gmake_commands_in} # Executable targets APP = %{out_dir}/botan%{program_suffix} @@ -31,7 +31,7 @@ all: $(APP) $(TEST) %{test_build_cmds} # Link Commands -%{dso_in} +%{gmake_dso_in} $(APP): $(LIBRARIES) $(APPOBJS) $(CXX) $(LDFLAGS) $(APPOBJS) -L%{out_dir} -l%{libname} $(APP_LINKS_TO) -o $(APP) @@ -44,7 +44,7 @@ $(STATIC_LIB): $(LIBOBJS) $(AR) $(STATIC_LIB) $(LIBOBJS) $(RANLIB) $(STATIC_LIB) -%{coverage_in} +%{gmake_coverage_in} SPHINX_CONFIG = %{sphinx_config_dir} SPHINX_OPTS = -b html |