mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-05 02:34:18 +00:00
50571597c5
Mac OS X won't have to create a special symlink to build, but can instead just use the command "gnumake" (as opposed to "make" og "gmake") Merged from tholo's branch http://svn.freeswitch.org/svn/freeswitch/branches/tholo rev 2796, thanks tholo. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2815 d0543943-73ff-0310-b7d9-9358b9ac24b2
43 lines
651 B
Makefile
43 lines
651 B
Makefile
EXTRA_DIST =
|
|
SUBDIRS =
|
|
AUTOMAKE_OPTS= gnu
|
|
NAME=libgsm
|
|
|
|
AM_CC=gcc
|
|
AM_CFLAGS = -I./inc -DNeedFunctionPrototypes=1 -funroll-loops -fPIC -DSASR -DNDEBUG -DWAV49
|
|
AM_CPPFLAGS = $(AM_CFLAGS)
|
|
|
|
lib_LTLIBRARIES = libgsm.la
|
|
libgsm_la_SOURCES = src/add.c\
|
|
src/code.c\
|
|
src/decode.c\
|
|
src/gsm_create.c\
|
|
src/gsm_decode.c\
|
|
src/gsm_destroy.c\
|
|
src/gsm_encode.c\
|
|
src/gsm_lpc.c\
|
|
src/gsm_option.c\
|
|
src/long_term.c\
|
|
src/preprocess.c\
|
|
src/rpe.c\
|
|
src/short_term.c\
|
|
src/table.c
|
|
|
|
libgsm_la_CFLAGS = $(AM_CFLAGS)
|
|
libgsm_la_LDFLAGS =
|
|
|
|
library_includedir = $(prefix)/include
|
|
library_include_HEADERS = inc/config.h\
|
|
inc/gsm.h\
|
|
inc/private.h\
|
|
inc/proto.h\
|
|
inc/unproto.h
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|