1753d2d2eSraf#
2753d2d2eSraf# CDDL HEADER START
3753d2d2eSraf#
4753d2d2eSraf# The contents of this file are subject to the terms of the
5753d2d2eSraf# Common Development and Distribution License, Version 1.0 only
6753d2d2eSraf# (the "License").  You may not use this file except in compliance
7753d2d2eSraf# with the License.
8753d2d2eSraf#
9753d2d2eSraf# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10753d2d2eSraf# or http://www.opensolaris.org/os/licensing.
11753d2d2eSraf# See the License for the specific language governing permissions
12753d2d2eSraf# and limitations under the License.
13753d2d2eSraf#
14753d2d2eSraf# When distributing Covered Code, include this CDDL HEADER in each
15753d2d2eSraf# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16753d2d2eSraf# If applicable, add the following below this CDDL HEADER, with the
17753d2d2eSraf# fields enclosed by brackets "[]" replaced with your own identifying
18753d2d2eSraf# information: Portions Copyright [yyyy] [name of copyright owner]
19753d2d2eSraf#
20753d2d2eSraf# CDDL HEADER END
21753d2d2eSraf#
22d50bcaaeSAndrew Stormont
23753d2d2eSraf#
24753d2d2eSraf# Copyright (c) 1997-1999 by Sun Microsystems, Inc.
25753d2d2eSraf# All rights reserved.
26753d2d2eSraf#
27d50bcaaeSAndrew Stormont# Copyright 2015 Nexenta Systems, Inc.  All right reserved.
28d50bcaaeSAndrew Stormont#
29*5661bb76SJohn Levon# Copyright (c) 2018, Joyent, Inc.
30753d2d2eSraf
31753d2d2eSraf.KEEP_STATE:
32753d2d2eSraf
33753d2d2eSrafPROG	=	spec2trace
34753d2d2eSraf
35753d2d2eSrafYACC_OBJS =	parseproto.o
36753d2d2eSraf
37753d2d2eSrafOBJECTS	=	trace.o		\
38753d2d2eSraf		util.o		\
39753d2d2eSraf		db.o		\
40753d2d2eSraf		symtab.o	\
41753d2d2eSraf		bindings.o	\
42753d2d2eSraf		printfuncs.o	\
43753d2d2eSraf		io.o		\
44753d2d2eSraf		linkage.o	\
45753d2d2eSraf		interceptor.o
46753d2d2eSraf
47753d2d2eSrafinclude		../../Makefile.cmd
48753d2d2eSraf
497014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-parentheses
507014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-switch
517014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-unused-variable
527014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-unused-label
53*5661bb76SJohn Levon
54*5661bb76SJohn Levon# not linted
55*5661bb76SJohn LevonSMATCH=off
56*5661bb76SJohn Levon
57