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