aboutsummaryrefslogtreecommitdiff
path: root/efivarfs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'efivarfs/Makefile')
-rw-r--r--efivarfs/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/efivarfs/Makefile b/efivarfs/Makefile
new file mode 100644
index 0000000..29e8c6b
--- /dev/null
+++ b/efivarfs/Makefile
@@ -0,0 +1,12 @@
+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]"
+
+clean:
+ rm -f $(test_objs)