Makefile 172 B

1234567891011121314
  1. CFLAGS = -Wall
  2. test_objs = open-unlink create-read
  3. all: $(test_objs)
  4. TEST_PROGS := efivarfs.sh
  5. TEST_FILES := $(test_objs)
  6. include ../lib.mk
  7. clean:
  8. rm -f $(test_objs)