3 #
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
7 #
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
12 #
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 #
19 # CDDL HEADER END
20 #
21
22 #
23 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 #
26
27 include $(SRC)/cmd/Makefile.cmd
28
29 .KEEP_STATE:
30
31 ROOTOPTPKG = $(ROOT)/opt/SUNWdtrt
32 ROOTTST = $(ROOTOPTPKG)/tst
33 SUBDIR :sh= basename `pwd`
34 TSTDIR = $(ROOTTST)/$(SUBDIR)
35 DSTYLE = $(ROOTOPTPKG)/bin/dstyle
36
37 CSRCS :sh= find . -name SCCS -prune -o -name *.c -print | cut -b3-
38 SSRCS :sh= find . -name SCCS -prune -o -name *.s -print | cut -b3-
39 DSRCS :sh= find . -name SCCS -prune -o -name *.d -print | cut -b3-
40
41 TSTS :sh= find . -name tst.*.d -o -name err.*.d -o \
42 -name tst.*.d.out -o -name err.*.d.out -o -name tst.*.ksh \
43 -o -name err.*.ksh -o -name tst.*.ksh.out -o -name drp.*.d \
44 -o -name get.*.pl
45
46 EXES :sh= find . -name SCCS -prune -o \( -name *.exe -o -name \*.pl \) -print \
47 | cut -b3-
48 EXES += $(CSRCS:%.c=%.exe)
49 EXES += $(SSRCS:%.s=%.exe)
50
51 ROOT_TSTS = $(TSTS:%=$(TSTDIR)/%)
52 ROOT_EXES = $(EXES:%=$(TSTDIR)/%)
53
54 $(ROOT_TSTS) := FILEMODE = 0444
55 $(ROOT_EXES) := FILEMODE = 0555
56
57 # The DTrace tests rely on "normal" behaviour from the compiler which
58 # agressive optimization of small, simple, one compilation-unit programs may
59 # utterly subvert. We force the compiler to not optimize rather than engage
60 # in an arms race with increasingly belligerent optimizers.
61 COPTFLAG= -xO0
62
63 CERRWARN += -_gcc=-Wno-switch
64 CERRWARN += -_gcc=-Wno-unused-variable
65 CERRWARN += -_gcc=-Wno-implicit-function-declaration
66 CERRWARN += -_gcc=-Wno-unused-function
67 CERRWARN += -_gcc=-Wno-unused-variable
68
69 all: $(EXES)
70
71 clean lint:
72
73 clobber: FRC
74 -$(RM) $(CSRCS:%.c=%.exe) $(CSRCS:%.c=%.o)
75 -$(RM) $(SSRCS:%.s=%.exe) $(SSRCS:%.s=%.o)
76 -$(RM) $(DSRCS:%.d=%.o)
77 -$(RM) $(CLOBBERFILES)
78
79 install: $(ROOT_TSTS) $(ROOT_EXES)
80
81 $(ROOT_TSTS): $(TSTDIR)
|
3 #
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
7 #
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
12 #
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 #
19 # CDDL HEADER END
20 #
21
22 #
23 # Copyright 2014 Gary Mills
24 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
26 #
27
28 include $(SRC)/cmd/Makefile.cmd
29
30 .KEEP_STATE:
31
32 ROOTOPTPKG = $(ROOT)/opt/SUNWdtrt
33 ROOTTST = $(ROOTOPTPKG)/tst
34 SUBDIR :sh= basename `pwd`
35 TSTDIR = $(ROOTTST)/$(SUBDIR)
36 DSTYLE = $(ROOTOPTPKG)/bin/dstyle
37
38 CSRCS :sh= find . -name SCCS -prune -o -name *.c -print | cut -b3-
39 SSRCS :sh= find . -name SCCS -prune -o -name *.s -print | cut -b3-
40 DSRCS :sh= find . -name SCCS -prune -o -name *.d -print | cut -b3-
41
42 TSTS :sh= find . -name tst.*.d -o -name err.*.d -o \
43 -name tst.*.d.out -o -name err.*.d.out -o -name tst.*.ksh \
44 -o -name err.*.ksh -o -name tst.*.ksh.out -o -name drp.*.d \
45 -o -name get.*.pl
46
47 EXES :sh= find . -name SCCS -prune -o \( -name *.exe -o -name \*.pl \) -print \
48 | cut -b3-
49 EXES += $(CSRCS:%.c=%.exe)
50 EXES += $(SSRCS:%.s=%.exe)
51
52 ROOT_TSTS = $(TSTS:%=$(TSTDIR)/%)
53 ROOT_EXES = $(EXES:%=$(TSTDIR)/%)
54
55 $(ROOT_TSTS) := FILEMODE = 0444
56 $(ROOT_EXES) := FILEMODE = 0555
57
58 # The DTrace tests rely on "normal" behaviour from the compiler which
59 # agressive optimization of small, simple, one compilation-unit programs may
60 # utterly subvert. We force the compiler to not optimize rather than engage
61 # in an arms race with increasingly belligerent optimizers.
62 COPTFLAG= -_cc=-xO0 -_gcc=-O0
63
64 CERRWARN += -_gcc=-Wno-switch
65 CERRWARN += -_gcc=-Wno-unused-variable
66 CERRWARN += -_gcc=-Wno-implicit-function-declaration
67 CERRWARN += -_gcc=-Wno-unused-function
68 CERRWARN += -_gcc=-Wno-unused-variable
69
70 all: $(EXES)
71
72 clean lint:
73
74 clobber: FRC
75 -$(RM) $(CSRCS:%.c=%.exe) $(CSRCS:%.c=%.o)
76 -$(RM) $(SSRCS:%.s=%.exe) $(SSRCS:%.s=%.o)
77 -$(RM) $(DSRCS:%.d=%.o)
78 -$(RM) $(CLOBBERFILES)
79
80 install: $(ROOT_TSTS) $(ROOT_EXES)
81
82 $(ROOT_TSTS): $(TSTDIR)
|