From 195b5d2d2c26f223bf5ed577d31897989105f2c1 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Mon, 24 Aug 2020 13:50:18 -0500 Subject: [PATCH] lkm: add linuxkm/include.am, and include it in Makefile.am. --- Makefile.am | 3 +++ linuxkm/include.am | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 linuxkm/include.am diff --git a/Makefile.am b/Makefile.am index 41a16eaf4..7ac5a4d6c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -172,6 +172,9 @@ include testsuite/include.am include tests/include.am include sslSniffer/sslSnifferTest/include.am include rpm/include.am +if BUILD_LINUXKM +include linuxkm/include.am +endif # Exclude references to non-DFSG sources from build files if !BUILD_DISTRO diff --git a/linuxkm/include.am b/linuxkm/include.am new file mode 100644 index 000000000..1e72eb569 --- /dev/null +++ b/linuxkm/include.am @@ -0,0 +1,9 @@ +# vim:ft=automake +# included from Top Level Makefile.am +# All paths should be given relative to the root + +EXTRA_DIST += m4/ax_linuxkm.m4 \ + linuxkm/Kbuild \ + linuxkm/Makefile \ + linuxkm/get_thread_size.c \ + linuxkm/module_hooks.c