Files
Chromebook-Device-Nyan-NVID…/tools/testing/selftests/efivarfs/Makefile
2025-04-06 23:50:55 -05:00

13 lines
203 B
Makefile

CC = $(CROSS_COMPILE)gcc
CFLAGS = -Wall
test_objs = open-unlink create-read
all: $(test_objs)
run_tests: all
@/bin/bash ./efivarfs.sh || echo "efivarfs selftests: [FAIL]"
clean:
rm -f $(test_objs)