blob: b64f61467e26411b7d3e64fd5156314a7de3fe10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
CC = $(CROSS_COMPILE)gcc
CFLAGS = -Wall
test_objs = open-unlink
all: $(test_objs)
run_tests: all
@/bin/bash ./efivarfs.sh || echo "efivarfs selftests: [FAIL]"
clean:
rm -f $(test_objs)
|