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# Copyright 2022 Oxide Computer Company 13 14include $(SRC)/cmd/Makefile.cmd 15include $(SRC)/cmd/Makefile.cmd.64 16include $(SRC)/test/Makefile.com 17 18PROG = mem_partial \ 19 mem_seg_map \ 20 mem_devmem \ 21 fpu_getset \ 22 interface_version \ 23 check_iommu \ 24 auto_destruct \ 25 legacy_destruct \ 26 self_destruct \ 27 drv_hold \ 28 cpuid_ioctl \ 29 default_capabs 30 31COMMON_OBJS = common.o 32CLEAN_OBJS = $(PROG:%=%.o) 33 34ROOTOPTPKG = $(ROOT)/opt/bhyve-tests 35TESTDIR = $(ROOTOPTPKG)/tests/vmm 36 37CMDS = $(PROG:%=$(TESTDIR)/%) 38$(CMDS) := FILEMODE = 0555 39 40CSTD= $(CSTD_GNU99) 41CPPFLAGS = -I$(COMPAT)/bhyve -I$(CONTRIB)/bhyve \ 42 -I$(COMPAT)/bhyve/amd64 -I$(CONTRIB)/bhyve/amd64 \ 43 $(CPPFLAGS.master) \ 44 -I$(SRC)/uts/intel/io/vmm \ 45 -I$(SRC)/uts/intel 46$(PROG) := LDLIBS += -lvmmapi 47 48all: $(PROG) 49 50install: all $(CMDS) 51 52clean: 53 -$(RM) $(CLEAN_OBJS) $(COMMON_OBJS) 54clobber: clean 55 -$(RM) $(PROG) 56 57$(PROG): $(COMMON_OBJS) 58 59$(CMDS): $(TESTDIR) $(PROG) 60 61$(TESTDIR): 62 $(INS.dir) 63 64$(TESTDIR)/%: % 65 $(INS.file) 66 67%: %.o 68 $(LINK.c) -o $@ $< $(COMMON_OBJS) $(LDLIBS) 69 $(POST_PROCESS) 70