xref: /illumos-gate/usr/src/test/bhyve-tests/tests/vmm/Makefile (revision 589f9b6223af8482576c4b68c4acc0626246eb32)
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	drv_hold \
26	cpuid_ioctl
27
28COMMON_OBJS =	common.o
29CLEAN_OBJS =	$(PROG:%=%.o)
30
31ROOTOPTPKG = $(ROOT)/opt/bhyve-tests
32TESTDIR = $(ROOTOPTPKG)/tests/vmm
33
34CMDS = $(PROG:%=$(TESTDIR)/%)
35$(CMDS) := FILEMODE = 0555
36
37CSTD=		$(CSTD_GNU99)
38CPPFLAGS =	-I$(COMPAT)/bhyve -I$(CONTRIB)/bhyve \
39		-I$(COMPAT)/bhyve/amd64 -I$(CONTRIB)/bhyve/amd64 \
40		$(CPPFLAGS.master) \
41		-I$(SRC)/uts/intel/io/vmm \
42		-I$(SRC)/uts/intel
43$(PROG) :=	LDLIBS += -lvmmapi
44
45all: $(PROG)
46
47install: all $(CMDS)
48
49clean:
50	-$(RM) $(CLEAN_OBJS) $(COMMON_OBJS)
51clobber: clean
52	-$(RM) $(PROG)
53
54$(PROG): $(COMMON_OBJS)
55
56$(CMDS): $(TESTDIR) $(PROG)
57
58$(TESTDIR):
59	$(INS.dir)
60
61$(TESTDIR)/%: %
62	$(INS.file)
63
64%: %.o
65	$(LINK.c) -o $@ $< $(COMMON_OBJS) $(LDLIBS)
66	$(POST_PROCESS)
67