aboutsummaryrefslogtreecommitdiffstats
path: root/src/bpfswitch/Makefile
diff options
context:
space:
mode:
authorSridhar K. N. Rao <srao@linuxfoundation.org>2022-12-16 17:24:48 +0530
committerSridhar K. N. Rao <srao@linuxfoundation.org>2022-12-19 21:14:08 +0530
commit3409364da8fa46eae8ca22a579e219dc74958079 (patch)
tree83cb1cc72c3c59465d7d3be0f793a896c0ad7a21 /src/bpfswitch/Makefile
parent34147ac299351c44d4f7d135892457fba38a132b (diff)
ebpf: This patch adds ebpf-baremetal test support
Remove object files and binaries Suggestions in systems/Readme. Add license headers. Signed-off-by: Sridhar K. N. Rao <srao@linuxfoundation.org> Change-Id: I5fd481e3ed3eb51e6b8091cbf6d1ec8e3b00cbf0
Diffstat (limited to 'src/bpfswitch/Makefile')
-rw-r--r--src/bpfswitch/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/bpfswitch/Makefile b/src/bpfswitch/Makefile
new file mode 100644
index 00000000..94a58c9a
--- /dev/null
+++ b/src/bpfswitch/Makefile
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: GPL-2.0
+
+SUBDIRS = ksrc usrc
+
+all:
+ @for s in $(SUBDIRS); do \
+ make -C $$s $(BUILDDIR) all; \
+ done
+
+clean:
+ @for s in $(SUBDIRS); do \
+ make -C $$s $(BUILDDIR) clean; \
+ done