Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: fad01e866afdbe01a1f3ec06a39c3a8b9e197014 authored by Linus Torvalds on 02 June 2014, 02:12:24 UTC
Linux 3.15-rc8
Tip revision: fad01e8
Makefile
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)
back to top