Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 #
0003 # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
0004 
0005 # Enclave lifetime management support for Nitro Enclaves (NE) - ioctl sample
0006 # usage.
0007 
0008 .PHONY: all clean
0009 
0010 CFLAGS += -Wall
0011 
0012 all:
0013         $(CC) $(CFLAGS) -o ne_ioctl_sample ne_ioctl_sample.c -lpthread
0014 
0015 clean:
0016         rm -f ne_ioctl_sample