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#
15
16include $(SRC)/Makefile.master
17
18ROOTOPTPKG = $(ROOT)/opt/os-tests
19TESTDIR = $(ROOTOPTPKG)/tests/ddi_ufm
20
21PROGS = ufm-test-setup ufm-test ufm-test-cleanup
22
23include $(SRC)/cmd/Makefile.cmd
24include $(SRC)/test/Makefile.com
25
26LDLIBS += -lnvpair
27CFLAGS += -I$(SRC)/uts/common/io/
28CSTD= $(CSTD_GNU99)
29
30CMDS = $(PROGS:%=$(TESTDIR)/%)
31$(CMDS) := FILEMODE = 0555
32
33all: $(PROGS)
34
35install: all $(CMDS)
36
37lint:
38
39clobber: clean
40	-$(RM) $(PROGS)
41
42clean:
43	-$(RM) *.o
44
45$(CMDS): $(TESTDIR) $(PROGS)
46
47$(TESTDIR):
48	$(INS.dir)
49
50$(TESTDIR)/%: %
51	$(INS.file)
52