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
16 include $(SRC)/Makefile.master
17
18 ROOTOPTPKG = $(ROOT)/opt/zfs-tests
19 TESTDIR = $(ROOTOPTPKG)/tests/functional/threadsappend
20
21 PROG = threadsappend
22
23 SCRIPTS = cleanup \
24 setup \
25 threadsappend_001_pos
26
27 include $(SRC)/cmd/Makefile.cmd
28 include $(SRC)/test/Makefile.com
29
30 ROOTOPTPKG = $(ROOT)/opt/zfs-tests
31
32 OBJS = $(PROG:%=%.o)
33 SRCS = $(OBJS:%.o=%.c)
34
35 CMDS = $(PROG:%=$(TESTDIR)/%) $(SCRIPTS:%=$(TESTDIR)/%)
36 $(CMDS) := FILEMODE = 0555
37
38 CPPFLAGS += -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
39
40 all: $(PROG)
41
42 $(PROG): $(OBJS)
43 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
44 $(POST_PROCESS)
45
46 %.o: ../%.c
47 $(COMPILE.c) $<
48
49 install: all $(CMDS)
50
51 lint: lint_SRCS
52
53 clobber: clean
54 -$(RM) $(PROG)
55
56 clean:
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)