Makefile 783 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Asterisk -- An open source telephony toolkit.
  3. #
  4. # Makefile for bridging modules
  5. #
  6. # Copyright (C) 2005-2007, Digium, Inc.
  7. #
  8. # This program is free software, distributed under the terms of
  9. # the GNU General Public License
  10. #
  11. -include $(ASTTOPDIR)/menuselect.makeopts $(ASTTOPDIR)/menuselect.makedeps
  12. MODULE_PREFIX=bridge
  13. MENUSELECT_CATEGORY=BRIDGES
  14. MENUSELECT_DESCRIPTION=Bridging Modules
  15. MODULE_EXCLUDE=binaural_rendering_in_bridge_softmix
  16. all: _all
  17. ifeq ($(findstring binaural_rendering_in_bridge_softmix,$(MENUSELECT_BRIDGES)),)
  18. bridge_softmix.o bridge_softmix/bridge_softmix_binaural.o: _ASTCFLAGS+=-DBINAURAL_RENDERING
  19. bridge_softmix.so: LIBS+=$(FFTW3_LIB)
  20. endif
  21. include $(ASTTOPDIR)/Makefile.moddir_rules
  22. $(call MOD_ADD_C,bridge_softmix,$(wildcard bridge_softmix/*.c))