blob: 8c40e623890136aa071cbbd1a16b88363a7e9f83 [file] [log] [blame]
Andrew Geissler028142b2023-05-05 11:29:21 -05001From 3ba8ba9410464d0986bc6cc5ddb1819745af1eb2 Mon Sep 17 00:00:00 2001
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002From: Yu Zongchun <b40527@freescale.com>
3Date: Sun, 28 Apr 2013 14:39:22 +0800
4Subject: [PATCH] Add the compile and install rules for cryptodev tests folder
5
6This is required to install the cryptodev tests folder to rootfs
7
8Signed-off-by: Yu Zongchun <b40527@freescale.com>
9
10Upstream-Status: Pending
11
12---
Andrew Geissler028142b2023-05-05 11:29:21 -050013 Makefile | 6 ++++++
14 tests/Makefile | 8 ++++++++
15 2 files changed, 14 insertions(+)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016
Andrew Geissler028142b2023-05-05 11:29:21 -050017diff --git a/Makefile b/Makefile
18index d83aee6..3a750a1 100644
19--- a/Makefile
20+++ b/Makefile
21@@ -41,6 +41,9 @@ modules_install:
22 install_tests: tests
23 $(MAKE) -C tests install DESTDIR=$(PREFIX)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024
25+install_tests:
26+ make -C tests install DESTDIR=$(PREFIX)
27+
28 clean:
Brad Bishop316dfdd2018-06-25 12:45:53 -040029 $(MAKE) $(KERNEL_MAKE_OPTS) clean
Andrew Geissler028142b2023-05-05 11:29:21 -050030 CFLAGS=$(CRYPTODEV_CFLAGS) KERNEL_DIR=$(KERNEL_DIR) $(MAKE) -C tests clean
31@@ -54,6 +57,9 @@ tests:
32
33 .PHONY: install modules_install tests install_tests
Patrick Williamsc124f4f2015-09-15 14:41:29 -050034
35+testprogs:
36+ KERNEL_DIR=$(KERNEL_DIR) make -C tests testprogs
37+
38 CPOPTS =
Brad Bishop316dfdd2018-06-25 12:45:53 -040039 ifneq ($(SHOW_TYPES),)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050040 CPOPTS += --show-types
Andrew Geissler028142b2023-05-05 11:29:21 -050041diff --git a/tests/Makefile b/tests/Makefile
42index 2502f32..2fb7a9a 100644
43--- a/tests/Makefile
44+++ b/tests/Makefile
Brad Bishop316dfdd2018-06-25 12:45:53 -040045@@ -23,6 +23,12 @@ bindir = $(execprefix)/bin
46
47 all: $(hostprogs)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050048
49+install:
50+ install -d $(DESTDIR)/usr/bin/tests_cryptodev
51+ for bin in $(hostprogs); do \
52+ install -m 755 $${bin} $(DESTDIR)/usr/bin/tests_cryptodev/; \
53+ done
54+
55 check: $(hostprogs)
56 ./cipher
57 ./hmac
Brad Bishop316dfdd2018-06-25 12:45:53 -040058@@ -38,6 +44,8 @@ install:
59 install -m 755 $$prog $(DESTDIR)/$(bindir); \
60 done
Patrick Williamsc124f4f2015-09-15 14:41:29 -050061
62+testprogs: $(hostprogs)
63+
64 clean:
65 rm -f *.o *~ $(hostprogs)
66