Makefile 953 B

1234567891011121314151617181920212223242526272829303132333435
  1. #
  2. # Asterisk -- A telephony toolkit for Linux.
  3. #
  4. # Makefile for PBX applications
  5. #
  6. # Copyright (C) 1999-2006, 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=app
  13. MENUSELECT_CATEGORY=APPS
  14. MENUSELECT_DESCRIPTION=Applications
  15. MENUSELECT_OPTS_app_directory:=$(MENUSELECT_OPTS_app_voicemail)
  16. ifneq ($(findstring ODBC_STORAGE,$(MENUSELECT_OPTS_app_voicemail)),)
  17. MENUSELECT_DEPENDS_app_voicemail+=$(MENUSELECT_DEPENDS_ODBC_STORAGE)
  18. endif
  19. ifneq ($(findstring IMAP_STORAGE,$(MENUSELECT_OPTS_app_voicemail)),)
  20. MENUSELECT_DEPENDS_app_voicemail+=$(MENUSELECT_DEPENDS_IMAP_STORAGE)
  21. endif
  22. all: _all
  23. include $(ASTTOPDIR)/Makefile.moddir_rules
  24. ifneq ($(findstring $(OSARCH), mingw32 cygwin ),)
  25. LIBS+= -lres_features.so -lres_ael_share.so -lres_monitor.so -lres_speech.so
  26. LIBS+= -lres_smdi.so
  27. endif