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 2019 Joyent, Inc.
14# Copyright 2022 Oxide Computer Company
15#
16
17$(OBJS_DIR)/%.o:		$(UTSBASE)/intel/io/vmm/%.c
18	$(COMPILE.c) -o $@ $<
19	$(CTFCONVERT_O)
20
21$(OBJS_DIR)/%.o:		$(UTSBASE)/intel/io/vmm/amd/%.c
22	$(COMPILE.c) -o $@ $<
23	$(CTFCONVERT_O)
24
25$(OBJS_DIR)/%.o:		$(UTSBASE)/intel/io/vmm/intel/%.c
26	$(COMPILE.c) -o $@ $<
27	$(CTFCONVERT_O)
28
29$(OBJS_DIR)/%.o:		$(UTSBASE)/intel/io/vmm/io/%.c
30	$(COMPILE.c) -o $@ $<
31	$(CTFCONVERT_O)
32
33$(OBJS_DIR)/%.o:		$(UTSBASE)/intel/io/vmm/%.s
34	$(COMPILE.s) -o $@ $<
35
36$(OBJS_DIR)/%.o:		$(UTSBASE)/intel/io/vmm/intel/%.s
37	$(COMPILE.s) -o $@ $<
38
39$(OBJS_DIR)/%.o:		$(UTSBASE)/intel/io/vmm/amd/%.s
40	$(COMPILE.s) -o $@ $<
41
42$(ASSYM_VMX): $(OFFSETS_VMX) $(GENASSYM)
43	$(OFFSETS_CREATE) -I$(UTSBASE)/intel/io/vmm < $(OFFSETS_VMX) >$@
44$(ASSYM_SVM): $(OFFSETS_SVM) $(GENASSYM)
45	$(OFFSETS_CREATE) -I$(UTSBASE)/intel/io/vmm < $(OFFSETS_SVM) >$@
46
47$(OBJS_DIR)/vmx_support.o:  $(ASSYM_VMX)
48$(OBJS_DIR)/svm_support.o:  $(ASSYM_SVM)
49