configure

changeset 754
4bc7d966c9db
parent 753
24dc84788dee
child 757
49ceea78fce7
--- a/configure	Thu Oct 12 00:00:35 2023 +0200
+++ b/configure	Wed Oct 18 21:07:02 2023 +0200
@@ -369,10 +369,12 @@
     do
         cat >> $TEMP_DIR/make.mk << __EOF__
 # Dependency: file-tools
-MKDIR=mkdir -p
-RMDIR=rm -f -R
-COPYFILE=cp
-COPYALL=cp -R
+MKDIR=/bin/mkdir -p
+RMFILE=/bin/rm -f
+RMDIR=/bin/rm -f -R
+COPYFILE=/bin/cp -f
+COPYALL=/bin/cp -f -R
+SYMLINK=/bin/ln -s
 
 __EOF__
         echo yes
@@ -438,12 +440,14 @@
 
         cat >> "$TEMP_DIR/make.mk" << __EOF__
 # library version
-VERSION="3.0.0"
+VERSION=3.0.0
+LIBVERSION=4.0.0
+LIBVERSION_MAJOR=4
 
 # build directory structure !! do not change or override !!
-BUILD_DIR=${src_dir}/build
-DOCS_DIR=${src_dir}/build/docs
-DIST_DIR=${src_dir}/dist
+build_dir=${src_dir}/build
+docs_dir=${src_dir}/build/docs
+dist_dir=${src_dir}/dist
 
 __EOF__
         break

mercurial