1CFLAGS = -Wall
2
3test_objs = open-unlink create-read
4
5all: $(test_objs)
6
7TEST_PROGS := efivarfs.sh
8TEST_FILES := $(test_objs)
9
10include ../lib.mk
11
12clean:
13	rm -f $(test_objs)
14