diff options
author | lloyd <[email protected]> | 2014-11-12 01:50:35 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-11-12 01:50:35 +0000 |
commit | 62ff505146cac307ca751109297332035bdc8b73 (patch) | |
tree | 55b31ba6d635338f8f4c8e3906b7f16ba003e72a /src/build-data/makefile/header.in | |
parent | 8b0cbccc7b11e545ed27bc6d7bda04b5cf632e60 (diff) |
Add a new Python install script and clean up the makefile templates
Diffstat (limited to 'src/build-data/makefile/header.in')
-rw-r--r-- | src/build-data/makefile/header.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/build-data/makefile/header.in b/src/build-data/makefile/header.in index c481f65f3..86d4c65c5 100644 --- a/src/build-data/makefile/header.in +++ b/src/build-data/makefile/header.in @@ -16,10 +16,14 @@ LIB_FLAGS = $(SO_OBJ_FLAGS) $(LANG_FLAGS) $(LIB_OPT) $(WARN_FLAGS) APP_FLAGS = $(LANG_FLAGS) $(APP_OPT) $(WARN_FLAGS) TEST_FLAGS = $(LANG_FLAGS) $(APP_OPT) $(WARN_FLAGS) +SCRIPTS_DIR = src/scripts + # Version Numbers VERSION = %{version} BRANCH = %{version_major}.%{version_minor} +LIBNAME = %{lib_prefix}botan-%{version_major}.%{version_minor} + # Installation Settings DESTDIR = %{destdir} BINDIR = $(DESTDIR)/bin @@ -32,7 +36,7 @@ CONFIG_SCRIPT = %{botan_config} PKGCONFIG = %{botan_pkgconfig} # Executable targets -APP = %{app_prefix}botan%{program_suffix} -TEST = %{app_prefix}botan-test%{program_suffix} +APP = %{out_dir}/botan%{program_suffix} +TEST = %{out_dir}/botan-test%{program_suffix} all: $(APP) $(TEST) |