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]
22 # uts/intel/audioemu10k/Makefile
24 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
27 # This makefile drives the production of the audioemu10k driver.
31 # Path to the base of the uts directory tree (usually /usr/src/uts).
36 # Define the module and object file sets.
39 OBJECTS
= $(AUDIOEMU10K_OBJS
:%=$(OBJS_DIR
)/%)
40 ROOTMODULE
= $(ROOT_DRV_DIR
)/$(MODULE
)
41 DSP_SRCDIR
= $(UTSBASE
)/common
/io
/audio
/drv
/audioemu10k
/dsp
42 DSP_HNAMES
= emu10k_gpr.h emu10k1_dsp.h emu10k2_dsp.h
43 DSP_HDRS
= $(DSP_HNAMES
:%=$(OBJS_DIR
)/%)
44 DSP_SNAMES
= emu10k.dsp emu10k1.mac emu10k2.mac
45 DSP_SRCS
= $(DSP_SNAMES
:%=$(DSP_SRCDIR
)/%)
46 ASM10K
= $(OBJS_DIR
)/asm10k
49 # Include common rules.
51 include $(UTSBASE
)/intel
/Makefile.intel
56 ALL_TARGET
= $(BINARY
)
57 INSTALL_TARGET
= $(BINARY
) $(ROOTMODULE
)
59 LDFLAGS
+= -dy
-Ndrv
/audio
-Nmisc
/ac97
61 CERRWARN
+= -Wno-uninitialized
63 $(OBJS_DIR
)/%.o
:= CPPFLAGS
+= -I
$(OBJS_DIR
)
64 $(OBJS_DIR
)/%.ln
:= CPPFLAGS
+= -I
$(OBJS_DIR
)
65 $(OBJS_DIR
)/emu10k_gpr.h
:= ASM10KFLAGS
= -0 -P gpr
66 $(OBJS_DIR
)/emu10k1_dsp.h
:= ASM10KFLAGS
= -1 -P emu10k1
67 $(OBJS_DIR
)/emu10k2_dsp.h
:= MODEL10K
= -DSBLIVE
68 $(OBJS_DIR
)/emu10k2_dsp.h
:= ASM10KFLAGS
= -2 -P emu10k2
69 $(OBJS_DIR
)/emu10k2_dsp.h
:= MODEL10K
= -DAUDIGY
72 # Default build targets.
82 clobber: $(CLOBBER_DEPS
)
84 install: $(INSTALL_DEPS
)
86 $(BINARY
): $(OBJS_DIR
)/asm10k
$(DSP_HDRS
)
88 $(ASM10K
): $(DSP_SRCDIR
)/asm10k.c
89 $(NATIVECC
) $(NATIVE_CFLAGS
) -o
$@
$(DSP_SRCDIR
)/asm10k.c
91 $(DSP_HDRS
): $(ASM10K
) $(DSP_SRCS
)
92 $(CPP
) -I
$(DSP_SRCDIR
) $(DSP_SRCDIR
)/emu10k.dsp | \
93 $(OBJS_DIR
)/asm10k
$(ASM10KFLAGS
) -h
$@
95 CLOBBERFILES
+= $(ASM10K
) $(DSP_HDRS
)
98 # Include common targets.
100 include $(UTSBASE
)/intel
/Makefile.targ