Makefile 191 B

12345678910111213
  1. CC = $(CROSS_COMPILE)gcc
  2. CFLAGS = -Wall
  3. test_objs = open-unlink
  4. all: $(test_objs)
  5. run_tests: all
  6. @/bin/bash ./efivarfs.sh || echo "efivarfs selftests: [FAIL]"
  7. clean:
  8. rm -f $(test_objs)