17 lines · plain
1# SPDX-License-Identifier: GPL-2.02#3# Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.4 5# Enclave lifetime management support for Nitro Enclaves (NE) - ioctl sample6# usage.7 8.PHONY: all clean9 10CFLAGS += -Wall11 12all:13 $(CC) $(CFLAGS) -o ne_ioctl_sample ne_ioctl_sample.c -lpthread14 15clean:16 rm -f ne_ioctl_sample17