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 2013 Pluribus Networks Inc. 14# Copyright 2019 Joyent, Inc. 15# Copyright 2022 Oxide Computer Company 16# 17 18UTSBASE = ../.. 19 20MODULE = ppt 21OBJECTS = $(PPT_OBJS:%=$(OBJS_DIR)/%) 22ROOTMODULE = $(USR_DRV_DIR)/$(MODULE) 23CONF_SRCDIR = $(UTSBASE)/intel/io/vmm/io 24MAPFILE = $(UTSBASE)/intel/io/vmm/io/ppt.mapfile 25 26include $(UTSBASE)/intel/Makefile.intel 27 28ALL_TARGET = $(BINARY) 29INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 30ALL_BUILDS = $(ALL_BUILDSONLY64) 31DEF_BUILDS = $(DEF_BUILDSONLY64) 32 33PRE_INC_PATH = \ 34 -I$(COMPAT)/bhyve \ 35 -I$(COMPAT)/bhyve/amd64 \ 36 -I$(CONTRIB)/bhyve \ 37 -I$(CONTRIB)/bhyve/amd64 38 39INC_PATH += -I$(UTSBASE)/intel/io/vmm -I$(UTSBASE)/intel/io/vmm/io 40AS_INC_PATH += -I$(UTSBASE)/intel/io/vmm -I$(OBJS_DIR) 41 42LDFLAGS += -N drv/vmm -N misc/pcie 43LDFLAGS += -M $(MAPFILE) 44 45$(OBJS_DIR)/ppt.o := CERRWARN += -_gcc=-Wno-unused-variable 46 47# needs work 48SMOFF += all_func_returns 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 62include $(UTSBASE)/intel/Makefile.targ 63include $(UTSBASE)/intel/io/vmm/Makefile.rules 64