1dfb9e8d7Sfl#
2dfb9e8d7Sfl# CDDL HEADER START
3dfb9e8d7Sfl#
4dfb9e8d7Sfl# The contents of this file are subject to the terms of the
5dfb9e8d7Sfl# Common Development and Distribution License (the "License").
6dfb9e8d7Sfl# You may not use this file except in compliance with the License.
7dfb9e8d7Sfl#
8dfb9e8d7Sfl# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9dfb9e8d7Sfl# or http://www.opensolaris.org/os/licensing.
10dfb9e8d7Sfl# See the License for the specific language governing permissions
11dfb9e8d7Sfl# and limitations under the License.
12dfb9e8d7Sfl#
13dfb9e8d7Sfl# When distributing Covered Code, include this CDDL HEADER in each
14dfb9e8d7Sfl# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15dfb9e8d7Sfl# If applicable, add the following below this CDDL HEADER, with the
16dfb9e8d7Sfl# fields enclosed by brackets "[]" replaced with your own identifying
17dfb9e8d7Sfl# information: Portions Copyright [yyyy] [name of copyright owner]
18dfb9e8d7Sfl#
19dfb9e8d7Sfl# CDDL HEADER END
20dfb9e8d7Sfl#
21dfb9e8d7Sfl#
2288447a05SGarrett D'Amore# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23dfb9e8d7Sfl# Use is subject to license terms.
24dfb9e8d7Sfl#
25*d50bcaaeSAndrew Stormont# Copyright 2015 RackTop Systems.
26*d50bcaaeSAndrew Stormont#
2788447a05SGarrett D'Amore# Makefile for cmd/audio/audiotest
2888447a05SGarrett D'Amore
2988447a05SGarrett D'AmorePROG= audiotest
3088447a05SGarrett D'AmoreOBJS= audiotest.o wavedata.o
3188447a05SGarrett D'AmoreSRCS= $(OBJS:%.o=%.c)
3288447a05SGarrett D'Amore
3388447a05SGarrett D'Amoreinclude ../../Makefile.cmd
3488447a05SGarrett D'Amore
3588447a05SGarrett D'AmoreCFLAGS += $(CCVERBOSE)
3688447a05SGarrett D'AmoreXGETFLAGS += -a -x audiotest.xcl
3788447a05SGarrett D'Amore
3888447a05SGarrett D'Amore.KEEP_STATE:
3988447a05SGarrett D'Amore
4088447a05SGarrett D'Amoreall: $(PROG)
41dfb9e8d7Sfl
4288447a05SGarrett D'Amore$(PROG):	$(OBJS)
43*d50bcaaeSAndrew Stormont	$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
4488447a05SGarrett D'Amore	$(POST_PROCESS)
45dfb9e8d7Sfl
4688447a05SGarrett D'Amoreinstall: all $(ROOTPROG)
47dfb9e8d7Sfl
4888447a05SGarrett D'Amoreclean:
49b6805bf7SGordon Ross	$(RM) $(OBJS)
50dfb9e8d7Sfl
5188447a05SGarrett D'Amorelint:	lint_SRCS
52dfb9e8d7Sfl
5388447a05SGarrett D'Amoreinclude ../../Makefile.targ
54