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