summaryrefslogtreecommitdiff
path: root/build/import/libxqilla
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-12-18 18:48:46 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-02-25 13:45:48 +0300
commit5e527213a2430bb3018e5eebd909aef294edf9b5 (patch)
tree94de33c82080b53d9a9e300170f6d221d89078f4 /build/import/libxqilla
parent7420f85ea19b0562ffdd8123442f32bc8bac1267 (diff)
Switch to build2
Diffstat (limited to 'build/import/libxqilla')
-rw-r--r--build/import/libxqilla/configuration-rules.make13
-rwxr-xr-xbuild/import/libxqilla/configure55
-rw-r--r--build/import/libxqilla/rules.make28
-rw-r--r--build/import/libxqilla/stub.make30
-rw-r--r--build/import/libxqilla/version1
5 files changed, 0 insertions, 127 deletions
diff --git a/build/import/libxqilla/configuration-rules.make b/build/import/libxqilla/configuration-rules.make
deleted file mode 100644
index c0e636e..0000000
--- a/build/import/libxqilla/configuration-rules.make
+++ /dev/null
@@ -1,13 +0,0 @@
-# file : build/import/libxqilla/configuration-rules.make
-# license : GNU GPL v2; see accompanying LICENSE file
-
-$(dcf_root)/import/libxqilla/configuration-dynamic.make: | $(dcf_root)/import/libxqilla/.
- $(call message,,$(scf_root)/import/libxqilla/configure $@)
-
-ifndef %foreign%
-
-disfigure::
- $(call message,rm $(dcf_root)/import/libxqilla/configuration-dynamic.make,\
-rm -f $(dcf_root)/import/libxqilla/configuration-dynamic.make)
-
-endif
diff --git a/build/import/libxqilla/configure b/build/import/libxqilla/configure
deleted file mode 100755
index 5d21907..0000000
--- a/build/import/libxqilla/configure
+++ /dev/null
@@ -1,55 +0,0 @@
-#! /usr/bin/env bash
-
-# file : build/import/libxqilla/configure
-# license : GNU GPL v2; see accompanying LICENSE file
-
-
-# $1 - out config file
-#
-# bld_root - build root
-# project_name - project name
-#
-
-source $bld_root/dialog.bash
-
-
-$echo
-$echo "Configuring external dependency on 'libxqilla' for '$project_name'."
-$echo
-
-$echo
-$echo "Would you like to configure dependency on the installed version"
-$echo "of 'libxqilla' as opposed to the development build?"
-$echo
-
-installed=`read_y_n y`
-
-path=
-type=
-
-if [ "$installed" = "n" ]; then
-
- $echo
- $echo "Please enter the 'libxqilla' root directory."
- $echo
-
- root=`read_path --directory --exist`
-
- $echo
- $echo "Please select the library type you would like to use:"
- $echo
- $echo "(1) archive"
- $echo "(2) shared object"
- $echo
-
- type=`read_option "archive shared" "shared"`
-fi
-
-echo libxqilla_installed := $installed >$1
-
-if [ "$installed" = "n" ]; then
-
- echo libxqilla_root := $root >>$1
- echo libxqilla_type := $type >>$1
-
-fi
diff --git a/build/import/libxqilla/rules.make b/build/import/libxqilla/rules.make
deleted file mode 100644
index d8a2c7a..0000000
--- a/build/import/libxqilla/rules.make
+++ /dev/null
@@ -1,28 +0,0 @@
-# file : build/import/libxqilla/rules.make
-# license : GNU GPL v2; see accompanying LICENSE file
-
-$(dcf_root)/import/libxqilla/%: root := $(libxqilla_root)
-
-ifeq ($(libxqilla_type),archive)
-
-$(dcf_root)/import/libxqilla/xqilla.l: $(libxqilla_root)/.libs/libxqilla.a
- @echo $< >$@
-else
-
-$(dcf_root)/import/libxqilla/xqilla.l: $(libxqilla_root)/.libs/libxqilla.so
- @echo $< >$@
- @echo rpath:$(root)/.libs >>$@
-endif
-
-$(dcf_root)/import/libxqilla/xqilla.l.cpp-options:
- @echo include: -I$(root)/include >$@
-
-
-ifndef %foreign%
-
-disfigure::
- $(call message,rm $(dcf_root)/import/libxqilla/xqilla.l,\
-rm -f $(dcf_root)/import/libxqilla/xqilla.l)
- $(call message,,rm -f $(dcf_root)/import/libxqilla/xqilla.l.cpp-options)
-
-endif
diff --git a/build/import/libxqilla/stub.make b/build/import/libxqilla/stub.make
deleted file mode 100644
index caccf97..0000000
--- a/build/import/libxqilla/stub.make
+++ /dev/null
@@ -1,30 +0,0 @@
-# file : build/import/libxqilla/stub.make
-# license : GNU GPL v2; see accompanying LICENSE file
-
-$(call include-once,$(scf_root)/import/libxqilla/configuration-rules.make,$(dcf_root))
-
-libxqilla_installed :=
-
-$(call -include,$(dcf_root)/import/libxqilla/configuration-dynamic.make)
-
-ifdef libxqilla_installed
-
-ifeq ($(libxqilla_installed),y)
-
-$(call export,l: -lxqilla,cpp-options: )
-
-else
-
-$(call include-once,$(scf_root)/import/libxqilla/rules.make,$(dcf_root))
-
-$(call export,\
- l: $(dcf_root)/import/libxqilla/xqilla.l,\
- cpp-options: $(dcf_root)/import/libxqilla/xqilla.l.cpp-options)
-
-endif
-
-else
-
-.NOTPARALLEL:
-
-endif
diff --git a/build/import/libxqilla/version b/build/import/libxqilla/version
deleted file mode 100644
index 6e8bf73..0000000
--- a/build/import/libxqilla/version
+++ /dev/null
@@ -1 +0,0 @@
-0.1.0