From 71076ac962cc2f6bb4bb14f9e1a0e668e8089335 Mon Sep 17 00:00:00 2001 From: William Findlay Date: Fri, 29 Oct 2021 13:11:20 -0400 Subject: [PATCH] makefile: fix wildcards --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 7e30834..7c21903 100644 --- a/Makefile +++ b/Makefile @@ -9,9 +9,9 @@ RELEASE = target/release/{{project-name}} DEBUG_BPF = target/bpfel-unknown-none/debug/{{project-name}} RELEASE_BPF = target/bpfel-unknown-none/release/{{project-name}} -USER_SRCS = $(wildcard {{project-name}}-common/**/*) -COMMON_SRCS = $(wildcard {{project-name}}/**/*) -BPF_SRCS = $(wildcard {{project-name}}-ebpf/**/*) +USER_SRCS = $(wildcard {{project-name}}-common/*) $(wildcard {{project-name}}-common/**/*) +COMMON_SRCS = $(wildcard {{project-name}}/*) $(wildcard {{project-name}}/**/*) +BPF_SRCS = $(wildcard {{project-name}}-ebpf/*) $(wildcard {{project-name}}-ebpf/**/*) .PHONY: build build: $(DEBUG)