mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-24 22:09:45 +07:00
13 lines
145 B
Makefile
13 lines
145 B
Makefile
|
TEST_PROGS := owner pidns
|
||
|
|
||
|
CFLAGS := -Wall -Werror
|
||
|
|
||
|
all: owner pidns
|
||
|
owner: owner.c
|
||
|
pidns: pidns.c
|
||
|
|
||
|
clean:
|
||
|
$(RM) owner pidns
|
||
|
|
||
|
include ../lib.mk
|