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 #
  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 
  47 # 3rd party code
  48 SMOFF += all_func_returns
  49 
  50 # needs work
  51 $(OBJS_DIR)/vmm_sol_dev.o := SMOFF += signed_integer_overflow_check
  52 
  53 ALL_BUILDS      = $(ALL_BUILDSONLY64)
  54 DEF_BUILDS      = $(DEF_BUILDSONLY64)
  55 PRE_INC_PATH    = -I$(COMPAT)/bhyve -I$(COMPAT)/bhyve/amd64 \
  56         -I$(CONTRIB)/bhyve -I$(CONTRIB)/bhyve/amd64
  57 INC_PATH        += -I$(UTSBASE)/i86pc/io/vmm -I$(UTSBASE)/i86pc/io/vmm/io
  58 AS_INC_PATH     += -I$(UTSBASE)/i86pc/io/vmm -I$(OBJS_DIR)
  59 
  60 # enable collection of VMM statistics
  61 CFLAGS          += -DVMM_KEEP_STATS
  62 
  63 LDFLAGS         += -N misc/acpica -N misc/pcie -N fs/dev
  64 LDFLAGS         += -z type=kmod -M $(MAPFILE)
  65 
  66 OFFSETS_VMX     = $(CONF_SRCDIR)/intel/offsets.in
  67 OFFSETS_SVM     = $(CONF_SRCDIR)/amd/offsets.in
  68 ASSYM_VMX       = $(OBJS_DIR)/vmx_assym.h
  69 ASSYM_SVM       = $(OBJS_DIR)/svm_assym.h
  70 ASSYM_H         = $(ASSYM_VMX) $(ASSYM_SVM)
  71 
  72 CLEANFILES      += $(ASSYM_H)
  73 
  74 #
  75 #       Default build targets.
  76 #
  77 .KEEP_STATE:
  78 
  79 def:            $(DEF_DEPS)
  80 
  81 all:            $(ALL_DEPS)
  82 
  83 clean:          $(CLEAN_DEPS)
  84 
  85 clobber:        $(CLOBBER_DEPS)
  86 
  87 install:        $(INSTALL_DEPS)
  88 
  89 #
  90 #       Include common targets.
  91 #
  92 include $(UTSBASE)/i86pc/Makefile.targ
  93 
  94 $(ASSYM_VMX): $(OFFSETS_VMX) $(GENASSYM)
  95         $(OFFSETS_CREATE) -I../../i86pc/io/vmm < $(OFFSETS_VMX) >$@
  96 $(ASSYM_SVM): $(OFFSETS_SVM) $(GENASSYM)
  97         $(OFFSETS_CREATE) -I../../i86pc/io/vmm < $(OFFSETS_SVM) >$@
  98 
  99 $(OBJS_DIR)/vmx_support.o:  $(ASSYM_VMX)
 100 $(OBJS_DIR)/svm_support.o:  $(ASSYM_SVM)