diff options
Diffstat (limited to 'tools/accounting/Makefile')
-rw-r--r-- | tools/accounting/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/accounting/Makefile b/tools/accounting/Makefile new file mode 100644 index 000000000..03687f19c --- /dev/null +++ b/tools/accounting/Makefile @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: GPL-2.0 +CC := $(CROSS_COMPILE)gcc +CFLAGS := -I../../usr/include + +PROGS := getdelays + +all: $(PROGS) + +clean: + rm -fr $(PROGS) |