Skip to content

Commit 087ff1a

Browse files
committed
examples/c: add minimal_ns to the list of built app
minimal_ns was missed, add it to .gitignore and APPS list. Closes: #265 Signed-off-by: Andrii Nakryiko <[email protected]>
1 parent f189965 commit 087ff1a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

examples/c/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/bootstrap
33
/minimal
44
/minimal_legacy
5+
/minimal_ns
56
/uprobe
67
/kprobe
78
/fentry

examples/c/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ INCLUDES := -I$(OUTPUT) -I../../libbpf/include/uapi -I$(dir $(VMLINUX)) -I$(LIBB
2424
CFLAGS := -g -Wall
2525
ALL_LDFLAGS := $(LDFLAGS) $(EXTRA_LDFLAGS)
2626

27-
APPS = minimal minimal_legacy bootstrap uprobe kprobe fentry usdt sockfilter tc ksyscall task_iter lsm
27+
APPS = minimal minimal_legacy minimal_ns bootstrap uprobe kprobe fentry \
28+
usdt sockfilter tc ksyscall task_iter lsm
2829

2930
CARGO ?= $(shell which cargo)
3031
ifeq ($(strip $(CARGO)),)

0 commit comments

Comments
 (0)