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