xref: /illumos-gate/usr/src/test/util-tests/tests/sed/bsd/Makefile (revision 8119dad84d6416f13557b0ba8e2aaf9064cbcfd3)
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 2020 OmniOS Community Edition (OmniOSce) Association.
14#
15
16include $(SRC)/cmd/Makefile.cmd
17include $(SRC)/test/Makefile.com
18
19PROG = multi_test
20DATAFILES :sh= (cd regress.multitest.out; print *)
21INFILES = multi_words
22
23ROOTOPTPKG = $(ROOT)/opt/util-tests
24TESTDIR = $(ROOTOPTPKG)/tests/sed
25DATADIR = $(TESTDIR)/regress.multitest.out
26
27TESTS = $(PROG:%=$(TESTDIR)/%)
28DATAS = $(DATAFILES:%=$(DATADIR)/%) $(INFILES:%=$(TESTDIR)/%)
29$(TESTS) := FILEMODE = 0555
30$(DATAS) := FILEMODE = 0444
31
32all clean clobber:
33
34install: all $(TESTS) $(DATAS)
35
36$(TESTS): $(TESTDIR) $(PROG).ksh
37$(DATAS): $(DATADIR)
38
39$(TESTDIR) $(DATADIR):
40	$(INS.dir)
41
42$(TESTDIR)/%: %.ksh
43	$(INS.rename)
44
45$(TESTDIR)/%: %
46	$(INS.file)
47
48$(DATADIR)/%: regress.multitest.out/%
49	$(INS.file)
50