1# 2# CDDL HEADER START 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 27include $(SRC)/cmd/Makefile.cmd 28 29.KEEP_STATE: 30 31ROOTOPTPKG = $(ROOT)/opt/SUNWdtrt 32ROOTTST = $(ROOTOPTPKG)/tst 33SUBDIR :sh= basename `pwd` 34TSTDIR = $(ROOTTST)/$(SUBDIR) 35DSTYLE = $(ROOTOPTPKG)/bin/dstyle 36 37CSRCS :sh= find . -name SCCS -prune -o -name *.c -print | cut -b3- 38SSRCS :sh= find . -name SCCS -prune -o -name *.s -print | cut -b3- 39DSRCS :sh= find . -name SCCS -prune -o -name *.d -print | cut -b3- 40 41TSTS :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 46EXES :sh= find . -name SCCS -prune -o \( -name *.exe -o -name \*.pl \) -print \ 47 | cut -b3- 48EXES += $(CSRCS:%.c=%.exe) 49EXES += $(SSRCS:%.s=%.exe) 50 51ROOT_TSTS = $(TSTS:%=$(TSTDIR)/%) 52ROOT_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. 61COPTFLAG= -xO0 62 63CERRWARN += -_gcc=-Wno-switch 64CERRWARN += -_gcc=-Wno-unused-variable 65CERRWARN += -_gcc=-Wno-implicit-function-declaration 66CERRWARN += -_gcc=-Wno-unused-function 67CERRWARN += -_gcc=-Wno-unused-variable 68 69all: $(EXES) 70 71clean lint: 72 73clobber: 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 79install: $(ROOT_TSTS) $(ROOT_EXES) 80 81$(ROOT_TSTS): $(TSTDIR) 82 83$(ROOT_EXES): $(TSTDIR) 84 85$(TSTDIR): 86 $(INS.dir) 87 88$(TSTDIR)/%: % 89 $(INS) -s -d -m $(DIRMODE) $(@D) 90 $(INS.file) 91 92%.exe: %.c 93 $(LINK.c) -o $@ $< $(LDLIBS) 94 $(POST_PROCESS) ; $(STRIP_STABS) 95 96%.exe: %.o 97 $(LINK.c) -o $@ $< $(LDLIBS) 98 $(POST_PROCESS) ; $(STRIP_STABS) 99 100%.o: %.c 101 $(COMPILE.c) -o $@ $< 102 $(POST_PROCESS_O) 103 104%.o: %.s 105 $(COMPILE.s) -o $@ $< 106 $(POST_PROCESS_O) 107 108scripts: FRC 109 @cd ../cmd/scripts; pwd; $(MAKE) install 110 111dstyle: FRC 112 @if [ -n "$(DSRCS)" ]; then $(DSTYLE) $(DSRCS); fi 113 114FRC: 115