1TEST_PROGS := owner pidns 2 3CFLAGS := -Wall -Werror 4 5all: owner pidns 6owner: owner.c 7pidns: pidns.c 8 9clean: 10 $(RM) owner pidns 11 12include ../lib.mk 13