Makefile.am 873 B

1234567891011121314151617181920212223242526
  1. include $(top_srcdir)/build/modmake.rulesam
  2. noinst_PROGRAMS = switch_event switch_hash switch_ivr_originate switch_utils switch_core switch_console switch_vpx switch_core_file \
  3. switch_ivr_play_say switch_core_codec switch_rtp switch_xml
  4. noinst_PROGRAMS += switch_core_video switch_core_db switch_vad switch_packetizer switch_core_session test_sofia switch_ivr_async switch_core_asr switch_log
  5. noinst_PROGRAMS+= switch_hold switch_sip
  6. if HAVE_PCAP
  7. noinst_PROGRAMS += switch_rtp_pcap
  8. AM_LDFLAGS += $(PCAP_LIBS)
  9. endif
  10. AM_LDFLAGS += -avoid-version -no-undefined $(SWITCH_AM_LDFLAGS) $(openssl_LIBS)
  11. AM_LDFLAGS += $(FREESWITCH_LIBS) $(switch_builddir)/libfreeswitch.la $(CORE_LIBS) $(APR_LIBS)
  12. # "make check" will not run these.
  13. examples = switch_eavesdrop
  14. if HAVE_FVAD
  15. AM_CFLAGS += -DSWITCH_HAVE_FVAD
  16. endif
  17. TESTS = $(noinst_PROGRAMS)
  18. bin_PROGRAMS = $(examples)