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