Makefile 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #
  2. # Asterisk -- A telephony toolkit for Linux.
  3. #
  4. # Makefile for PBX frontends (dynamically loaded)
  5. #
  6. # Copyright (C) 1999, Mark Spencer
  7. #
  8. # Mark Spencer <markster@linux-support.net>
  9. #
  10. # This program is free software, distributed under the terms of
  11. # the GNU General Public License
  12. #
  13. #
  14. # Uncomment if you have g723.1 code (with the same API as the Annex-A code
  15. # and have placed it in the g723.1 directory and/or the Annex-B code in
  16. # g723.1b)
  17. #
  18. #MODG723=codec_g723_1.so codec_g723_1b.so
  19. MODG723=$(shell [ -f g723.1/coder.c ] && echo "codec_g723_1.so")
  20. MODG723+=$(shell [ -f g723.1b/coder2.c ] && echo "codec_g723_1b.so")
  21. MODSPEEX=$(shell [ -f /usr/include/speex.h ] || [ -f /usr/include/speex/speex.h ] || [ -f /usr/local/include/speex.h ] || [ -f /usr/local/include/speex/speex.h ] && echo "codec_speex.so")
  22. MODILBC=$(shell [ -f ilbc/iLBC_decode.h ] && echo "codec_ilbc.so")
  23. CFLAGS+=-fPIC
  24. CFLAGS+=$(shell [ -f /usr/local/include/speex.h ] && echo "-I/usr/local/include")
  25. CFLAGS+=$(shell [ -f /usr/local/include/speex/speex.h ] && echo "-I/usr/local/include/speex")
  26. CFLAGS+=$(shell [ -f /usr/include/speex/speex.h ] && echo "-I/usr/include/speex")
  27. LIBG723=g723.1/libg723.a
  28. LIBG723B=g723.1b/libg723b.a
  29. LIBGSM=gsm/lib/libgsm.a
  30. LIBGSMT=gsm/lib/libgsm.a
  31. LIBLPC10=lpc10/liblpc10.a
  32. LIBSPEEX=$(shell [ -f /usr/local/lib/libspeex.a ] && echo "-L/usr/local/lib")
  33. LIBSPEEX+=-lspeex -lm
  34. LIBILBC=ilbc/libilbc.a
  35. CODECS+=$(MODG723) $(MODSPEEX) $(MODILBC) codec_gsm.so codec_lpc10.so \
  36. codec_adpcm.so codec_ulaw.so codec_alaw.so codec_a_mu.so \
  37. codec_g726.so
  38. all: depend $(CODECS)
  39. clean:
  40. rm -f *.so *.o .depend
  41. ! [ -d g723.1 ] || $(MAKE) -C g723.1 clean
  42. ! [ -d g723.1b ] || $(MAKE) -C g723.1b clean
  43. $(MAKE) -C gsm clean
  44. $(MAKE) -C lpc10 clean
  45. $(MAKE) -C ilbc clean
  46. $(LIBG723):
  47. $(MAKE) -C g723.1 all
  48. gsm/lib/libgsm.a:
  49. $(MAKE) -C gsm lib/libgsm.a
  50. $(LIBG723B):
  51. $(MAKE) -C g723.1b all
  52. $(LIBLPC10):
  53. $(MAKE) -C lpc10 all
  54. $(LIBILBC):
  55. $(MAKE) -C ilbc all
  56. codec_ilbc.so: codec_ilbc.o $(LIBILBC)
  57. $(CC) $(SOLINK) -o $@ $< $(LIBILBC)
  58. codec_g723_1.so : codec_g723_1.o $(LIBG723)
  59. $(CC) $(SOLINK) -o $@ $< $(LIBG723)
  60. codec_g723_1b.o : codec_g723_1.c
  61. $(CC) -c -o $@ $(CFLAGS) -DANNEX_B -Dsingle $<
  62. codec_g723_1b.so : codec_g723_1b.o $(LIBG723B)
  63. $(CC) $(SOLINK) -o $@ $< $(LIBG723B) -lm
  64. codec_gsm.so: codec_gsm.o $(LIBGSMT)
  65. $(CC) $(SOLINK) -o $@ $< $(LIBGSM)
  66. codec_speex.so: codec_speex.o
  67. $(CC) $(SOLINK) -o $@ $< $(LIBSPEEX)
  68. codec_lpc10.so: codec_lpc10.o $(LIBLPC10)
  69. $(CC) $(SOLINK) -o $@ $< $(LIBLPC10) -lm
  70. %.so : %.o
  71. $(CC) $(SOLINK) -o $@ $<
  72. ifneq ($(wildcard .depend),)
  73. include .depend
  74. endif
  75. install: all
  76. for x in $(CODECS); do $(INSTALL) -m 755 $$x $(DESTDIR)$(MODULES_DIR) ; done
  77. depend: .depend
  78. .depend:
  79. ../mkdep $(CFLAGS) `ls *.c`