Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 4c2e07c6a29e0129e975727b9f57eede813eea85 authored by Linus Torvalds on 27 June 2016, 00:52:03 UTC
Linux 4.7-rc5
Tip revision: 4c2e07c
Makefile
CFLAGS = -Wall

test_objs = open-unlink create-read

all: $(test_objs)

TEST_PROGS := efivarfs.sh
TEST_FILES := $(test_objs)

include ../lib.mk

clean:
	rm -f $(test_objs)
back to top