]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - samples/nitro_enclaves/Makefile
block: call blk_register_queue earlier in device_add_disk
[mirror_ubuntu-jammy-kernel.git] / samples / nitro_enclaves / Makefile
CommitLineData
acc4229c
AP
1# SPDX-License-Identifier: GPL-2.0
2#
3# Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
5# Enclave lifetime management support for Nitro Enclaves (NE) - ioctl sample
6# usage.
7
8.PHONY: all clean
9
10CFLAGS += -Wall
11
12all:
13 $(CC) $(CFLAGS) -o ne_ioctl_sample ne_ioctl_sample.c -lpthread
14
15clean:
16 rm -f ne_ioctl_sample