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 (c) 2013 by Delphix. All rights reserved.
14#
15
16include $(SRC)/Makefile.master
17
18ROOTOPTPKG = $(ROOT)/opt/zfs-tests
19TESTDIR = $(ROOTOPTPKG)/tests/functional/threadsappend
20
21PROG = threadsappend
22
23SCRIPTS = cleanup \
24	setup \
25	threadsappend_001_pos
26
27include $(SRC)/cmd/Makefile.cmd
28include $(SRC)/test/Makefile.com
29
30ROOTOPTPKG = $(ROOT)/opt/zfs-tests
31
32OBJS = $(PROG:%=%.o)
33SRCS = $(OBJS:%.o=%.c)
34
35CMDS = $(PROG:%=$(TESTDIR)/%) $(SCRIPTS:%=$(TESTDIR)/%)
36$(CMDS) := FILEMODE = 0555
37
38CPPFLAGS += -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
39
40all: $(PROG)
41
42$(PROG): $(OBJS)
43	$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
44	$(POST_PROCESS)
45
46%.o: ../%.c
47	$(COMPILE.c) $<
48
49install: all $(CMDS)
50
51lint: lint_SRCS
52
53clobber: clean
54	-$(RM) $(PROG)
55
56clean:
57	-$(RM) $(OBJS)
58
59$(CMDS): $(TESTDIR) $(PROG)
60
61$(TESTDIR):
62	$(INS.dir)
63
64$(TESTDIR)/%: %
65	$(INS.file)
66
67$(TESTDIR)/%: %.ksh
68	$(INS.rename)
69