1b806e607f
Put virtual_oss, /etc/devd/snd.conf and the other audio-related tools into a new "sound" package. Don't create a separate -lib package, since it's unlikely someone will want mixer(3) without mixer(8). Put the sound package in the optional set rather than minimal, since it's not actually required for audio hardware support, and many systems (including nearly all servers) won't want it installed. MFC after: 3 seconds Reviewed by: christos Sponsored by: https://www.patreon.com/bsdivy Differential Revision: https://reviews.freebsd.org/D52823
35 lines
947 B
Makefile
35 lines
947 B
Makefile
PACKAGE= sound
|
|
|
|
LIB= mixer
|
|
SRCS= ${LIB}.c
|
|
INCS= ${LIB}.h
|
|
MAN= ${LIB}.3
|
|
VERSION_DEF= ${LIBCSRCDIR}/Versions.def
|
|
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
|
|
|
|
MLINKS+= mixer.3 mixer_open.3
|
|
MLINKS+= mixer.3 mixer_close.3
|
|
MLINKS+= mixer.3 mixer_get_dev.3
|
|
MLINKS+= mixer.3 mixer_get_dev_byname.3
|
|
MLINKS+= mixer.3 mixer_add_ctl.3
|
|
MLINKS+= mixer.3 mixer_add_ctl_s.3
|
|
MLINKS+= mixer.3 mixer_remove_ctl.3
|
|
MLINKS+= mixer.3 mixer_get_ctl.3
|
|
MLINKS+= mixer.3 mixer_get_ctl_byname.3
|
|
MLINKS+= mixer.3 mixer_set_vol.3
|
|
MLINKS+= mixer.3 mixer_set_mute.3
|
|
MLINKS+= mixer.3 mixer_mod_recsrc.3
|
|
MLINKS+= mixer.3 mixer_get_dunit.3
|
|
MLINKS+= mixer.3 mixer_set_dunit.3
|
|
MLINKS+= mixer.3 mixer_get_mode.3
|
|
MLINKS+= mixer.3 mixer_get_nmixers.3
|
|
MLINKS+= mixer.3 mixer_get_path.3
|
|
MLINKS+= mixer.3 MIX_ISDEV.3
|
|
MLINKS+= mixer.3 MIX_ISMUTE.3
|
|
MLINKS+= mixer.3 MIX_ISREC.3
|
|
MLINKS+= mixer.3 MIX_ISRECSRC.3
|
|
MLINKS+= mixer.3 MIX_VOLNORM.3
|
|
MLINKS+= mixer.3 MIX_VOLDENORM.3
|
|
|
|
.include <bsd.lib.mk>
|