xref: /openbmc/linux/tools/testing/selftests/efivarfs/Makefile (revision 1a4e39c2e5ca2eb494a53ecd73055562f690bca0)
1CC = $(CROSS_COMPILE)gcc
2CFLAGS = -Wall
3
4test_objs = open-unlink create-read
5
6all: $(test_objs)
7
8run_tests: all
9	@/bin/bash ./efivarfs.sh || echo "efivarfs selftests: [FAIL]"
10
11clean:
12	rm -f $(test_objs)
13