mixer

FreeBSD OSS mixer library implementation and a complete rewrite of mixer(8)
git clone git://git.margiolis.net/mixer.git
Log | Files | Refs | README | LICENSE

Makefile (910B)


      1 # $FreeBSD$
      2 
      3 LIB=		mixer
      4 SRCS=		${LIB}.c
      5 INCS=		${LIB}.h
      6 MAN=		${LIB}.3
      7 VERSION_DEF=	${LIBCSRCDIR}/Versions.def
      8 SYMBOL_MAPS=	${.CURDIR}/Symbol.map
      9 
     10 MLINKS+=	mixer.3 mixer_open.3
     11 MLINKS+=	mixer.3 mixer_close.3
     12 MLINKS+=	mixer.3 mixer_get_dev.3
     13 MLINKS+=	mixer.3 mixer_get_dev_byname.3
     14 MLINKS+=	mixer.3 mixer_add_ctl.3
     15 MLINKS+=	mixer.3 mixer_add_ctl_s.3
     16 MLINKS+=	mixer.3 mixer_remove_ctl.3
     17 MLINKS+=	mixer.3 mixer_get_ctl.3
     18 MLINKS+=	mixer.3 mixer_get_ctl_byname.3
     19 MLINKS+=	mixer.3 mixer_set_vol.3
     20 MLINKS+=	mixer.3 mixer_set_mute.3
     21 MLINKS+=	mixer.3 mixer_mod_recsrc.3
     22 MLINKS+=	mixer.3 mixer_get_dunit.3
     23 MLINKS+=	mixer.3 mixer_set_dunit.3
     24 MLINKS+=	mixer.3 mixer_get_mode.3
     25 MLINKS+=	mixer.3 mixer_get_nmixers.3
     26 MLINKS+=	mixer.3 MIX_ISDEV.3
     27 MLINKS+=	mixer.3 MIX_ISMUTE.3
     28 MLINKS+=	mixer.3 MIX_ISREC.3
     29 MLINKS+=	mixer.3 MIX_ISRECSRC.3
     30 MLINKS+=	mixer.3 MIX_VOLNORM.3
     31 MLINKS+=	mixer.3 MIX_VOLDENORM.3
     32 
     33 .include <bsd.lib.mk>