blob: b64f61467e26411b7d3e64fd5156314a7de3fe10 [file] [log] [blame]
Jeremy Kerr455ce1c2013-02-27 17:05:52 -08001CC = $(CROSS_COMPILE)gcc
2CFLAGS = -Wall
3
4test_objs = open-unlink
5
6all: $(test_objs)
7
8run_tests: all
9 @/bin/bash ./efivarfs.sh || echo "efivarfs selftests: [FAIL]"
10
11clean:
12 rm -f $(test_objs)