dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / cmd / dtrace / test / tst / Makefile.com
blob33ae2d30ee7e82d109bbc56f8eb53994258abd46
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
23 # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24 # Use is subject to license terms.
27 include $(SRC)/cmd/Makefile.cmd
29 .KEEP_STATE:
31 ROOTOPTPKG = $(ROOT)/opt/SUNWdtrt
32 ROOTTST = $(ROOTOPTPKG)/tst
33 SUBDIR :sh= basename `pwd`
34 TSTDIR = $(ROOTTST)/$(SUBDIR)
35 DSTYLE = $(ROOTOPTPKG)/bin/dstyle
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-
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
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)
51 ROOT_TSTS = $(TSTS:%=$(TSTDIR)/%)
52 ROOT_EXES = $(EXES:%=$(TSTDIR)/%)
54 $(ROOT_TSTS) := FILEMODE = 0444
55 $(ROOT_EXES) := FILEMODE = 0555
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=       -O0
63 CERRWARN +=     -Wno-switch
64 CERRWARN +=     -Wno-unused-variable
65 CERRWARN +=     -Wno-implicit-function-declaration
66 CERRWARN +=     -Wno-unused-function
67 CERRWARN +=     -Wno-unused-variable
69 all: $(EXES)
71 clean:
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)
79 install: $(ROOT_TSTS) $(ROOT_EXES)
81 $(ROOT_TSTS): $(TSTDIR)
83 $(ROOT_EXES): $(TSTDIR)
85 $(TSTDIR):
86         $(INS.dir)
88 $(TSTDIR)/%: %
89         $(INS) -d -m $(DIRMODE) $(@D)
90         $(INS.file)
92 %.exe: %.c
93         $(LINK.c) -o $@ $< $(LDLIBS)
94         $(POST_PROCESS) ; $(STRIP_STABS)
96 %.exe: %.o
97         $(LINK.c) -o $@ $< $(LDLIBS)
98         $(POST_PROCESS) ; $(STRIP_STABS)
100 %.o: %.c
101         $(COMPILE.c) -o $@ $<
102         $(POST_PROCESS_O)
104 %.o: %.s
105         $(COMPILE.s) -o $@ $<
106         $(POST_PROCESS_O)
108 scripts: FRC
109         @cd ../cmd/scripts; pwd; $(MAKE) install
111 dstyle: FRC
112         @if [ -n "$(DSRCS)" ]; then $(DSTYLE) $(DSRCS); fi
114 FRC: