Makefile 335 B

12345678910111213141516
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
  4. # Enclave lifetime management support for Nitro Enclaves (NE) - ioctl sample
  5. # usage.
  6. .PHONY: all clean
  7. CFLAGS += -Wall
  8. all:
  9. $(CC) $(CFLAGS) -o ne_ioctl_sample ne_ioctl_sample.c -lpthread
  10. clean:
  11. rm -f ne_ioctl_sample