summaryrefslogtreecommitdiff
path: root/efivarfs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'efivarfs/Makefile')
-rw-r--r--efivarfs/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/efivarfs/Makefile b/efivarfs/Makefile
index 29e8c6b..736c3dd 100644
--- a/efivarfs/Makefile
+++ b/efivarfs/Makefile
@@ -1,12 +1,13 @@
-CC = $(CROSS_COMPILE)gcc
CFLAGS = -Wall
test_objs = open-unlink create-read
all: $(test_objs)
-run_tests: all
- @/bin/bash ./efivarfs.sh || echo "efivarfs selftests: [FAIL]"
+TEST_PROGS := efivarfs.sh
+TEST_FILES := $(test_objs)
+
+include ../lib.mk
clean:
rm -f $(test_objs)