1/*
2 * Copyright 1994 Network Computing Devices, Inc.
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and
5 * its documentation for any purpose is hereby granted without fee, provided
6 * that the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name Network Computing Devices, Inc. not be
9 * used in advertising or publicity pertaining to distribution of this
10 * software without specific, written prior permission.
11 *
12 * THIS SOFTWARE IS PROVIDED `AS-IS'.  NETWORK COMPUTING DEVICES, INC.,
13 * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT
14 * LIMITATION ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
15 * PARTICULAR PURPOSE, OR NONINFRINGEMENT.  IN NO EVENT SHALL NETWORK
16 * COMPUTING DEVICES, INC., BE LIABLE FOR ANY DAMAGES WHATSOEVER, INCLUDING
17 * SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, INCLUDING LOSS OF USE, DATA,
18 * OR PROFITS, EVEN IF ADVISED OF THE POSSIBILITY THEREOF, AND REGARDLESS OF
19 * WHETHER IN AN ACTION IN CONTRACT, TORT OR NEGLIGENCE, ARISING OUT OF OR IN
20 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 *
22 * $Id: Imakefile 99 2002-07-10 02:28:41Z jon $
23 * $NCDId: @(#)Imakefile,v 1.6 1994/08/09 19:23:37 greg Exp $
24 */
25
26#include "../../config/NetAudio.def"
27#include "../../config/NetAudio.tmpl"
28
29YFLAGS = -d
30
31SRCS = dispatch.c dixutils.c events.c globals.c main.c resource.c swapreq.c \
32       tables.c swaprep.c \
33       audispatch.c auswap.c autables.c auevents.c auutil.c auconfig.c \
34       auprocess.c nasconf.c lex.c gram.c
35
36OBJS = dispatch.o dixutils.o events.o globals.o main.o resource.o swapreq.o \
37       tables.o swaprep.o \
38       audispatch.o auswap.o autables.o auevents.o auutil.o auconfig.o \
39       auprocess.o  nasconf.o lex.o gram.o
40
41    INCLUDES = -I. -I../include -I../../include -I../../lib/audio
42    DEFINES = AllocateLocalDefines -DNASCONFSEARCHPATH=\"NasConfigSearchPath\"
43
44NormalLibraryObjectRule()
45NormalLibraryTarget(dia,$(OBJS))
46
47BuildReleaseHeader()
48
49YaccFile(gram,$(YFLAGS))
50
51LexFile(lex)
52
53
54/* JET - need to install a config manpage around here somewhere */
55
56DependTarget()
57
58FILES = $(SRCS) au.h
59
60HEADERS = globals.h nasconf.h
61
62BuildIncludes($(HEADERS),,)
63
64
65