aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/makefile/header.in
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-11-12 01:50:35 +0000
committerlloyd <[email protected]>2014-11-12 01:50:35 +0000
commit62ff505146cac307ca751109297332035bdc8b73 (patch)
tree55b31ba6d635338f8f4c8e3906b7f16ba003e72a /src/build-data/makefile/header.in
parent8b0cbccc7b11e545ed27bc6d7bda04b5cf632e60 (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.in8
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)