aboutsummaryrefslogtreecommitdiff
path: root/tools/testing/selftests/efivarfs/Makefile
blob: 29e8c6bc81b04330ee5a360218f0a8fb787ef3c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
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)