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 2020 Joyent, Inc.
  15 #
  16 
  17 #
  18 #       Path to the base of the uts directory tree (usually /usr/src/uts).
  19 #
  20 UTSBASE = ../..
  21 
  22 #
  23 #       Define the module and object file sets.
  24 #
  25 MODULE          = vmm
  26 OBJECTS         = $(VMM_OBJS:%=$(OBJS_DIR)/%)
  27 ROOTMODULE      = $(USR_DRV_DIR)/$(MODULE)
  28 CONF_SRCDIR     = $(UTSBASE)/i86pc/io/vmm
  29 MAPFILE         = $(UTSBASE)/i86pc/io/vmm/vmm.mapfile
  30 
  31 #
  32 #       Include common rules.
  33 #
  34 include $(UTSBASE)/i86pc/Makefile.i86pc
  35 
  36 #
  37 #       Define targets
  38 #
  39 ALL_TARGET      = $(BINARY)
  40 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
  41 
  42 #
  43 #       Overrides and additions
  44 #
  45 
  46 # 3rd party code
  47 SMOFF += all_func_returns
  48 
  49 # needs work
  50 $(OBJS_DIR)/vmm_sol_dev.o := SMOFF += signed_integer_overflow_check
  51 
  52 ALL_BUILDS      = $(ALL_BUILDSONLY64)
  53 DEF_BUILDS      = $(DEF_BUILDSONLY64)
  54 PRE_INC_PATH    = -I$(COMPAT)/bhyve -I$(COMPAT)/bhyve/amd64 \
  55         -I$(CONTRIB)/bhyve -I$(CONTRIB)/bhyve/amd64
  56 INC_PATH        += -I$(UTSBASE)/i86pc/io/vmm -I$(UTSBASE)/i86pc/io/vmm/io
  57 AS_INC_PATH     += -I$(UTSBASE)/i86pc/io/vmm -I$(OBJS_DIR)
  58 
  59 # enable collection of VMM statistics
  60 CFLAGS          += -DVMM_KEEP_STATS
  61 
  62 LDFLAGS         += -N misc/acpica -N misc/pcie -N fs/dev -N fs/zfs
  63 LDFLAGS         += -z type=kmod -M $(MAPFILE)
  64 
  65 OFFSETS_VMX     = $(CONF_SRCDIR)/intel/offsets.in
  66 OFFSETS_SVM     = $(CONF_SRCDIR)/amd/offsets.in
  67 ASSYM_VMX       = $(OBJS_DIR)/vmx_assym.h
  68 ASSYM_SVM       = $(OBJS_DIR)/svm_assym.h
  69 ASSYM_H         = $(ASSYM_VMX) $(ASSYM_SVM)
  70 
  71 CLEANFILES      += $(ASSYM_H)
  72 
  73 #
  74 #       Default build targets.
  75 #
  76 .KEEP_STATE:
  77 
  78 def:            $(DEF_DEPS)
  79 
  80 all:            $(ALL_DEPS)
  81 
  82 clean:          $(CLEAN_DEPS)
  83 
  84 clobber:        $(CLOBBER_DEPS)
  85 
  86 install:        $(INSTALL_DEPS)
  87 
  88 #
  89 #       Include common targets.
  90 #
  91 include $(UTSBASE)/i86pc/Makefile.targ
  92 
  93 $(ASSYM_VMX): $(OFFSETS_VMX) $(GENASSYM)
  94         $(OFFSETS_CREATE) -I../../i86pc/io/vmm < $(OFFSETS_VMX) >$@
  95 $(ASSYM_SVM): $(OFFSETS_SVM) $(GENASSYM)
  96         $(OFFSETS_CREATE) -I../../i86pc/io/vmm < $(OFFSETS_SVM) >$@
  97 
  98 $(OBJS_DIR)/vmx_support.o:  $(ASSYM_VMX)
  99 $(OBJS_DIR)/svm_support.o:  $(ASSYM_SVM)