1# 2# This file and its contents are supplied under the terms of the 3# Common Development and Distribution License ("CDDL"), version 1.0. 4# You may only use this file in accordance with the terms of version 5# 1.0 of the CDDL. 6# 7# A full copy of the text of the CDDL should have accompanied this 8# source. A copy of the CDDL is also available via the Internet at 9# http://www.illumos.org/license/CDDL. 10# 11 12# 13# Copyright 2023 Toomas Soome <tsoome@me.com> 14# 15 16# 17# Path to the base of the uts directory tree (usually /usr/src/uts). 18# 19UTSBASE = ../.. 20COM_DIR = $(COMMONBASE)/crypto 21 22# 23# Define the module and object file sets. 24# 25MODULE = viorand 26OBJECTS = $(VIORANDPROV_OBJS:%=$(OBJS_DIR)/%) 27ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 28 29# 30# Include common rules. 31# 32include $(UTSBASE)/intel/Makefile.intel 33 34# 35# Define targets 36# 37ALL_TARGET = $(BINARY) 38INSTALL_TARGET = $(BINARY) $(ROOTMODULE) 39 40CFLAGS += -I$(COM_DIR) -I$(UTSBASE)/common/io/virtio 41 42# 43# Linkage dependencies 44# 45LDFLAGS += -N misc/kcf -N misc/virtio 46 47# 48# Default build targets. 49# 50.KEEP_STATE: 51 52def: $(DEF_DEPS) 53 54all: $(ALL_DEPS) 55 56clean: $(CLEAN_DEPS) 57 58clobber: $(CLOBBER_DEPS) 59 60install: $(INSTALL_DEPS) 61 62# 63# Include common targets. 64# 65include $(UTSBASE)/intel/Makefile.targ 66