aboutsummaryrefslogtreecommitdiff
path: root/com/BLAKE2/meson.build
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2022-12-31 16:03:20 +0200
committeraqua <aqua@iserlohn-fortress.net>2023-01-29 11:41:29 +0200
commitf6b7365dc8759d6df5d340e4a68fb75537c07be4 (patch)
treec15614d8dee445dd4c6ae75da2959c701e69daae /com/BLAKE2/meson.build
parentMove blake2s selftest to test/ (diff)
downloadkernel-f6b7365dc8759d6df5d340e4a68fb75537c07be4.tar.xz
blake2: use makefiles instead of meson.build
Diffstat (limited to 'com/BLAKE2/meson.build')
-rw-r--r--com/BLAKE2/meson.build17
1 files changed, 0 insertions, 17 deletions
diff --git a/com/BLAKE2/meson.build b/com/BLAKE2/meson.build
deleted file mode 100644
index 7d180e3..0000000
--- a/com/BLAKE2/meson.build
+++ /dev/null
@@ -1,17 +0,0 @@
-#BLAKE2s = static_library('BLAKE2s', 'blake2s.c')
-BLAKE2s_native = shared_library('BLAKE2s_native', 'blake2s.c', native: true)
-
-kat = generator(python3,
- arguments: '@INPUT@',
- capture: true, output: '@BASENAME@.h'
-)
-
-test('BLAKE2s selftest',
- executable('b2s_selftest', 'test/blake2s_selftest.c', link_with: BLAKE2s_native, native: true),
- suite: 'BLAKE2'
-)
-test('BLAKE2s KAT',
- executable('b2s_kat', ['test/blake2s_kat.c', kat.process('test/blake2s_kat.py')],
- link_with: BLAKE2s_native, native: true),
- suite: 'BLAKE2'
-)