dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / test / zfs-tests / tests / functional / threadsappend / Makefile
blobcdf8918ba20cf045650eabfec23406c97a73a248
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.
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.
13 # Copyright (c) 2013 by Delphix. All rights reserved.
16 include $(SRC)/Makefile.master
18 ROOTOPTPKG = $(ROOT)/opt/zfs-tests
19 TESTDIR = $(ROOTOPTPKG)/tests/functional/threadsappend
21 PROG = threadsappend
23 SCRIPTS = cleanup \
24 setup \
25 threadsappend_001_pos
27 include $(SRC)/cmd/Makefile.cmd
28 include $(SRC)/test/Makefile.com
30 ROOTOPTPKG = $(ROOT)/opt/zfs-tests
32 OBJS = $(PROG:%=%.o)
33 SRCS = $(OBJS:%.o=%.c)
35 CMDS = $(PROG:%=$(TESTDIR)/%) $(SCRIPTS:%=$(TESTDIR)/%)
36 $(CMDS) := FILEMODE = 0555
38 CPPFLAGS += -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
40 all: $(PROG)
42 $(PROG): $(OBJS)
43 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
44 $(POST_PROCESS)
46 %.o: ../%.c
47 $(COMPILE.c) $<
49 install: all $(CMDS)
51 clobber: clean
52 -$(RM) $(PROG)
54 clean:
55 -$(RM) $(OBJS)
57 $(CMDS): $(TESTDIR) $(PROG)
59 $(TESTDIR):
60 $(INS.dir)
62 $(TESTDIR)/%: %
63 $(INS.file)
65 $(TESTDIR)/%: %.ksh
66 $(INS.rename)