summaryrefslogtreecommitdiff
path: root/p11-kit/gen-virtual-fixed.sh
diff options
context:
space:
mode:
Diffstat (limited to 'p11-kit/gen-virtual-fixed.sh')
-rwxr-xr-xp11-kit/gen-virtual-fixed.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/p11-kit/gen-virtual-fixed.sh b/p11-kit/gen-virtual-fixed.sh
new file mode 100755
index 0000000..b4f0978
--- /dev/null
+++ b/p11-kit/gen-virtual-fixed.sh
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+target="$1"
+closures="$2"
+
+rm -f $target-t $target && \
+ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+ echo; \
+ counter=0; \
+ while test $counter -lt $closures; do \
+ echo "P11_VIRTUAL_FIXED_FUNCTIONS($counter)"; \
+ counter=`expr $counter + 1`; \
+ done; \
+ echo; \
+ echo "CK_FUNCTION_LIST p11_virtual_fixed[P11_VIRTUAL_MAX_FIXED] = {"; \
+ counter=0; \
+ while test $counter -lt $closures; do \
+ echo " P11_VIRTUAL_FIXED_INITIALIZER($counter),"; \
+ counter=`expr $counter + 1`; \
+ done; \
+ echo '};'; \
+ echo; \
+ counter=0; \
+ while test $counter -lt $closures; do \
+ echo "P11_VIRTUAL_FIXED_GET_FUNCTION_LIST($counter)"; \
+ counter=`expr $counter + 1`; \
+ done; \
+ } > $target-t && mv -f $target-t $target